]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_hideoper.cpp
Theres no need to check the address of a stack declared array for NULL, thanks darix
[user/henk/code/inspircd.git] / src / modules / m_hideoper.cpp
index dc7495cd5ff5d8f537adb36ef13f2b644ee015b8..a2a3f21cda6029916a02db2b84892c720031b591 100644 (file)
@@ -12,9 +12,6 @@
  */
 
 #include "inspircd.h"
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
 
 /* $ModDesc: Provides support for hiding oper status with user mode +H */
 
@@ -25,7 +22,7 @@ class HideOper : public ModeHandler
  public:
        HideOper(InspIRCd* Instance) : ModeHandler(Instance, 'H', 0, 0, false, MODETYPE_USER, true) { }
 
-       ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
+       ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
        {
                if (source != dest)
                        return MODEACTION_DENY;
@@ -61,7 +58,7 @@ class ModuleHideOper : public Module
        {
                
                hm = new HideOper(ServerInstance);
-               if (!ServerInstance->AddMode(hm, 'H'))
+               if (!ServerInstance->AddMode(hm))
                        throw ModuleException("Could not add new modes!");
        }
 
@@ -81,7 +78,7 @@ class ModuleHideOper : public Module
                return Version(1,1,0,0,VF_COMMON|VF_VENDOR,API_VERSION);
        }
 
-       int OnWhoisLine(userrec* user, userrec* dest, int &numeric, std::string &text)
+       int OnWhoisLine(User* user, User* dest, int &numeric, std::string &text)
        {
                /* Dont display numeric 313 (RPL_WHOISOPER) if they have +H set and the
                 * person doing the WHOIS is not an oper
@@ -91,4 +88,4 @@ class ModuleHideOper : public Module
 };
 
 
-MODULE_INIT(ModuleHideOper);
+MODULE_INIT(ModuleHideOper)