]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setidle.cpp
Remove the -Dssize_t declaration now its typedeffed.
[user/henk/code/inspircd.git] / src / modules / m_setidle.cpp
index d5d3973212c6e8af1c7f9958ad2660eb1313c484..4751d99c121b65fea206279b2dba2912e2d677b1 100644 (file)
@@ -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("$Id$", VF_VENDOR, API_VERSION);
+               return Version("Allows opers to set their idle time", VF_VENDOR, API_VERSION);
        }
 };