]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_nokicks.cpp
fixed some indentation and spacing in modules
[user/henk/code/inspircd.git] / src / modules / m_nokicks.cpp
index 74701795ba6043cb7a29424beba5c06af5669e3f..3956c265f9f34473ce49e3db11db4b8a9513c5c3 100644 (file)
@@ -23,15 +23,15 @@ class NoKicks : public SimpleChannelModeHandler
 
 class ModuleNoKicks : public Module
 {
-       
+
        NoKicks* nk;
-       
+
  public:
+
        ModuleNoKicks(InspIRCd* Me)
                : Module(Me)
        {
-               
+
                nk = new NoKicks(ServerInstance);
                if (!ServerInstance->Modes->AddMode(nk))
                        throw ModuleException("Could not add new modes!");
@@ -67,7 +67,7 @@ class ModuleNoKicks : public Module
                ServerInstance->Modes->DelMode(nk);
                delete nk;
        }
-       
+
        virtual Version GetVersion()
        {
                return Version(1,2,0,0,VF_COMMON|VF_VENDOR,API_VERSION);