]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_hidechans.cpp
More AddModes fixes
[user/henk/code/inspircd.git] / src / modules / m_hidechans.cpp
index 44d503ff3fbd51256e9473da3de14a27aaae6fd9..2637968a9d9750097c929c3aca4efefa027bcc16 100644 (file)
@@ -12,9 +12,6 @@
  */
 
 #include "inspircd.h"
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
 
 /* $ModDesc: Provides support for hiding channels with user mode +I */
 
@@ -25,7 +22,7 @@ class HideChans : public ModeHandler
  public:
        HideChans(InspIRCd* Instance) : ModeHandler(Instance, 'I', 0, 0, false, MODETYPE_USER, false) { }
 
-       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)
        {
                /* Only opers can change other users modes */
                if (source != dest)
@@ -82,7 +79,7 @@ class ModuleHideChans : 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 channels if they have +I set and the
                 * person doing the WHOIS is not an oper
@@ -92,4 +89,4 @@ class ModuleHideChans : public Module
 };
 
 
-MODULE_INIT(ModuleHideChans);
+MODULE_INIT(ModuleHideChans)