]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_tline.cpp
More cleanup of quit servers
[user/henk/code/inspircd.git] / src / modules / m_tline.cpp
index d3c8641d16115c831efa444739547f05fd9bcc45..78c90f68c3f571faaf441cef89863f07b30b69b3 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
  * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
@@ -63,8 +63,8 @@ class ModuleTLine : public Module
 {
        CommandTline cmd;
  public:
-       ModuleTLine(InspIRCd* Me)
-               : Module(Me), cmd(this)
+       ModuleTLine()
+               : cmd(this)
        {
                ServerInstance->AddCommand(&cmd);
        }
@@ -76,7 +76,7 @@ class ModuleTLine : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides /tline command used to test who a mask matches", VF_VENDOR,API_VERSION);
+               return Version("Provides /tline command used to test who a mask matches", VF_VENDOR);
        }
 };