From b37a253d962ed7af1ea7a328abf2a1af74f30759 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 10 Aug 2006 23:19:43 +0000 Subject: Note: FOR THE MOMENT, this is BROKEN. It wont run right until im done. Changed Parameter for modules from Server* to InspIRCd*. TODO: Move remaining Server* Modules into InspIRCd* and remove class Server. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4859 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_chgident.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'src/modules/m_chgident.cpp') diff --git a/src/modules/m_chgident.cpp b/src/modules/m_chgident.cpp index 7efe2e755..83e3c70d5 100644 --- a/src/modules/m_chgident.cpp +++ b/src/modules/m_chgident.cpp @@ -10,12 +10,10 @@ extern InspIRCd* ServerInstance; class cmd_chgident : public command_t { - Server* Srv; public: - cmd_chgident(Server* serv) : command_t("CHGIDENT", 'o', 2) + cmd_chgident() : command_t("CHGIDENT", 'o', 2) { this->source = "m_chgident.so"; - Srv = serv; syntax = " "; } @@ -45,12 +43,13 @@ class cmd_chgident : public command_t class ModuleChgIdent : public Module { cmd_chgident* mycommand; + Server* Srv; public: - ModuleChgIdent(Server* Me) : Module::Module(Me) + ModuleChgIdent(InspIRCd* Me) : Module::Module(Me) { - mycommand = new cmd_chgident(Me); - Me->AddCommand(mycommand); + mycommand = new cmd_chgident(); + Srv->AddCommand(mycommand); } virtual ~ModuleChgIdent() @@ -77,7 +76,7 @@ class ModuleChgIdentFactory : public ModuleFactory { } - virtual Module * CreateModule(Server* Me) + virtual Module * CreateModule(InspIRCd* Me) { return new ModuleChgIdent(Me); } -- cgit v1.2.3