X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmodules%2Fm_channames.cpp;h=f1704a52891ab6a0d13daf0aefb2b5b745875011;hb=4ab1c43c1eee708fc50a4808f714a731891b75e8;hp=c2bf9feecdb99d57b9eef6e1be278e4fbe3ad71a;hpb=e586aaab7c4f7b03514c83451d73b73f55dc6998;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_channames.cpp b/src/modules/m_channames.cpp index c2bf9feec..f1704a528 100644 --- a/src/modules/m_channames.cpp +++ b/src/modules/m_channames.cpp @@ -27,8 +27,8 @@ class NewIsChannelHandler : public HandlerBase2IsChannel = &myhandler; Implementation eventlist[] = { I_OnRehash, I_OnUserKick }; @@ -94,7 +94,7 @@ class ModuleChannelNames : public Module badchan = false; } - virtual void OnRehash(User* user) + void OnRehash(User* user) CXX11_OVERRIDE { ConfigTag* tag = ServerInstance->Config->ConfValue("channames"); std::string denyToken = tag->getString("denyrange"); @@ -118,7 +118,7 @@ class ModuleChannelNames : public Module ValidateChans(); } - virtual void OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& except_list) + void OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& except_list) CXX11_OVERRIDE { if (badchan) { @@ -129,13 +129,13 @@ class ModuleChannelNames : public Module } } - virtual ~ModuleChannelNames() + ~ModuleChannelNames() { ServerInstance->IsChannel = rememberer; ValidateChans(); } - virtual Version GetVersion() + Version GetVersion() CXX11_OVERRIDE { return Version("Implements config tags which allow changing characters allowed in channel names", VF_VENDOR); }