From 0fd2d50fcf1bcff107d6d185aad5d8e9245d4141 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Sun, 12 Nov 2017 20:53:24 +0000 Subject: Only subclass Simple{Channel,User}ModeHandler when necessary. --- src/modules/m_callerid.cpp | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'src/modules/m_callerid.cpp') diff --git a/src/modules/m_callerid.cpp b/src/modules/m_callerid.cpp index d191a9fc7..7b56ffce4 100644 --- a/src/modules/m_callerid.cpp +++ b/src/modules/m_callerid.cpp @@ -147,12 +147,6 @@ struct CallerIDExtInfo : public ExtensionItem } }; -class User_g : public SimpleUserModeHandler -{ -public: - User_g(Module* Creator) : SimpleUserModeHandler(Creator, "callerid", 'g') { } -}; - class CommandAccept : public Command { /** Pair: first is the target, second is true to add, false to remove @@ -333,7 +327,7 @@ public: class ModuleCallerID : public Module { CommandAccept cmd; - User_g myumode; + SimpleUserModeHandler myumode; // Configuration variables: bool operoverride; // Operators can override callerid. @@ -364,7 +358,9 @@ class ModuleCallerID : public Module } public: - ModuleCallerID() : cmd(this), myumode(this) + ModuleCallerID() + : cmd(this) + , myumode(this, "callerid", 'g') { } -- cgit v1.3.1-10-gc9f91