From 7bed8a21909f2fdeb5d41a374bb3f2d32fb3085b Mon Sep 17 00:00:00 2001 From: w00t Date: Mon, 11 Feb 2008 10:55:40 +0000 Subject: Fix: Extra duplication of InspIRCd * is not necessary. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8896 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_cgiirc.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/modules') 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 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"; -- cgit v1.2.3