X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fparammode.h;h=c79d11b6b5611418ba6ce29142931fe8185853bc;hb=36da0833c5512a72cbf500a2f5faef5a26ed8dae;hp=b0005262e4185abccb6946cf98f29568ff981c82;hpb=f71e6bf9cb41811f18864f5d4eecb26e29d03f25;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/parammode.h b/include/parammode.h index b0005262e..c79d11b6b 100644 --- a/include/parammode.h +++ b/include/parammode.h @@ -31,7 +31,7 @@ class CoreExport ParamModeBase : public ModeHandler ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string& param, bool adding) CXX11_OVERRIDE; // Does nothing by default - void OnUnset(User* source, Channel* chan) { } + virtual void OnUnset(User* source, Channel* chan) { } virtual ModeAction OnSet(User* source, Channel* chan, std::string& param) = 0; virtual void GetParameter(Channel* chan, std::string& out) = 0; }; @@ -56,14 +56,13 @@ class ParamMode : public ParamModeBase */ ParamMode(Module* Creator, const std::string& Name, char modeletter, ParamSpec ps = PARAM_SETONLY) : ParamModeBase(Creator, Name, modeletter, ps) - , ext("parammode_" + Name, Creator) + , ext("parammode_" + Name, ExtensionItem::EXT_CHANNEL, Creator) { } void OnUnsetInternal(User* source, Channel* chan) CXX11_OVERRIDE { - T* mh = static_cast(this); - mh->OnUnset(source, chan); + this->OnUnset(source, chan); ext.unset(chan); }