diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_autoop.cpp | 5 | ||||
-rw-r--r-- | src/modules/m_banexception.cpp | 5 | ||||
-rw-r--r-- | src/modules/m_chanfilter.cpp | 5 | ||||
-rw-r--r-- | src/modules/m_inviteexception.cpp | 5 |
4 files changed, 0 insertions, 20 deletions
diff --git a/src/modules/m_autoop.cpp b/src/modules/m_autoop.cpp index 40a57d7c3..8f37f1cf9 100644 --- a/src/modules/m_autoop.cpp +++ b/src/modules/m_autoop.cpp @@ -123,11 +123,6 @@ public: } } - void OnCleanup(int target_type, void* item) - { - mh.DoCleanup(target_type, item); - } - void OnSyncChannel(Channel* chan, Module* proto, void* opaque) { mh.DoSyncChannel(chan, proto, opaque); diff --git a/src/modules/m_banexception.cpp b/src/modules/m_banexception.cpp index bf2085182..14908fafc 100644 --- a/src/modules/m_banexception.cpp +++ b/src/modules/m_banexception.cpp @@ -115,11 +115,6 @@ public: return MOD_RES_PASSTHRU; } - void OnCleanup(int target_type, void* item) - { - be.DoCleanup(target_type, item); - } - void OnSyncChannel(Channel* chan, Module* proto, void* opaque) { be.DoSyncChannel(chan, proto, opaque); diff --git a/src/modules/m_chanfilter.cpp b/src/modules/m_chanfilter.cpp index 95fd9b3e1..3bc1082a6 100644 --- a/src/modules/m_chanfilter.cpp +++ b/src/modules/m_chanfilter.cpp @@ -128,11 +128,6 @@ class ModuleChanFilter : public Module return MOD_RES_PASSTHRU; } - virtual void OnCleanup(int target_type, void* item) - { - cf.DoCleanup(target_type, item); - } - virtual ModResult OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list) { return OnUserPreMessage(user,dest,target_type,text,status,exempt_list); diff --git a/src/modules/m_inviteexception.cpp b/src/modules/m_inviteexception.cpp index 5e6628e6d..9c7573185 100644 --- a/src/modules/m_inviteexception.cpp +++ b/src/modules/m_inviteexception.cpp @@ -90,11 +90,6 @@ public: return MOD_RES_PASSTHRU; } - void OnCleanup(int target_type, void* item) - { - ie.DoCleanup(target_type, item); - } - void OnSyncChannel(Channel* chan, Module* proto, void* opaque) { ie.DoSyncChannel(chan, proto, opaque); |