X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_topiclock.cpp;h=563fa6caa47be91437417b21762aa19a86d347ff;hb=5c9427cde0a949a17a476311db0a2a275345337b;hp=e17fac1a26a5afe2b3f75fb8ec44cc5c4e6c1838;hpb=56629ceb7e8db52003ae3c21a6c8b1da7bf508d7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_topiclock.cpp b/src/modules/m_topiclock.cpp index e17fac1a2..563fa6caa 100644 --- a/src/modules/m_topiclock.cpp +++ b/src/modules/m_topiclock.cpp @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -/* ModDesc: Implements server-side topic locks and the server-to-server command SVSTOPIC */ +/* $ModDesc: Implements server-side topic locks and the server-to-server command SVSTOPIC */ #include "inspircd.h" @@ -47,7 +47,7 @@ class CommandSVSTOPIC : public Command time_t topicts = ConvToInt(parameters[1]); if (!topicts) { - ServerInstance->Logs->Log("m_topiclock", DEFAULT, "Received SVSTOPIC with a 0 topicts, dropped."); + ServerInstance->Logs->Log("m_topiclock", LOG_DEFAULT, "Received SVSTOPIC with a 0 topicts, dropped."); return CMD_INVALID; } @@ -96,7 +96,7 @@ class FlagExtItem : public ExtensionItem { } - virtual ~FlagExtItem() + ~FlagExtItem() { } @@ -151,14 +151,14 @@ class ModuleTopicLock : public Module { } - void init() + void init() CXX11_OVERRIDE { ServerInstance->Modules->AddService(cmd); ServerInstance->Modules->AddService(topiclock); ServerInstance->Modules->Attach(I_OnPreTopicChange, this); } - ModResult OnPreTopicChange(User* user, Channel* chan, const std::string &topic) + ModResult OnPreTopicChange(User* user, Channel* chan, const std::string &topic) CXX11_OVERRIDE { // Only fired for local users currently, but added a check anyway if ((IS_LOCAL(user)) && (topiclock.get(chan))) @@ -170,7 +170,7 @@ class ModuleTopicLock : public Module return MOD_RES_PASSTHRU; } - Version GetVersion() + Version GetVersion() CXX11_OVERRIDE { return Version("Implements server-side topic locks and the server-to-server command SVSTOPIC", VF_COMMON | VF_VENDOR); }