diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-11 10:55:40 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-11 10:55:40 +0000 |
commit | 7bed8a21909f2fdeb5d41a374bb3f2d32fb3085b (patch) | |
tree | d3360774c430ef9202adab4c80e690c54f71120a | |
parent | 60f3d89d5907049a2627d134b652c675b052602b (diff) |
Fix: Extra duplication of InspIRCd * is not necessary.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8896 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_cgiirc.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/modules/m_cgiirc.cpp b/src/modules/m_cgiirc.cpp index 53fdb6ff7..c1f6cf89e 100644 --- a/src/modules/m_cgiirc.cpp +++ b/src/modules/m_cgiirc.cpp @@ -53,12 +53,10 @@ typedef std::vector<CGIhost> CGIHostlist; */ class CommandWebirc : public Command { - // XXX why is inspircd declared here? does class command not have one? - InspIRCd* Me; CGIHostlist Hosts; bool notify; public: - CommandWebirc(InspIRCd* iMe, CGIHostlist &cHosts, bool bnotify) : Command(iMe, "WEBIRC", 0, 4, true), Hosts(cHosts), notify(bnotify) + CommandWebirc(InspIRCd* Instance, CGIHostlist &cHosts, bool bnotify) : Command(Instance, "WEBIRC", 0, 4, true), Hosts(cHosts), notify(bnotify) { this->source = "m_cgiirc.so"; this->syntax = "password client hostname ip"; |