]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setidle.cpp
Add IPV6_V6ONLY support
[user/henk/code/inspircd.git] / src / modules / m_setidle.cpp
index 68df49a335b0e6be8b35ba527290776e8b7713b1..14de47b2c9613d1f2dc119ef1a2b7444dadce5a5 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
@@ -50,8 +50,8 @@ class ModuleSetIdle : public Module
 {
        CommandSetidle cmd;
  public:
-       ModuleSetIdle(InspIRCd* Me)
-               : Module(Me), cmd(this)
+       ModuleSetIdle()
+               : cmd(this)
        {
                ServerInstance->AddCommand(&cmd);
        }
@@ -62,7 +62,7 @@ class ModuleSetIdle : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Allows opers to set their idle time", VF_VENDOR, API_VERSION);
+               return Version("Allows opers to set their idle time", VF_VENDOR);
        }
 };