Remove calls to ListModeBase::OnCleanup (deprecated, empty function)

This commit is contained in:
attilamolnar 2012-10-13 01:39:43 +02:00
parent 357a38d160
commit 81d7a5b538
4 changed files with 0 additions and 20 deletions

View File

@ -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) void OnSyncChannel(Channel* chan, Module* proto, void* opaque)
{ {
mh.DoSyncChannel(chan, proto, opaque); mh.DoSyncChannel(chan, proto, opaque);

View File

@ -115,11 +115,6 @@ public:
return MOD_RES_PASSTHRU; return MOD_RES_PASSTHRU;
} }
void OnCleanup(int target_type, void* item)
{
be.DoCleanup(target_type, item);
}
void OnSyncChannel(Channel* chan, Module* proto, void* opaque) void OnSyncChannel(Channel* chan, Module* proto, void* opaque)
{ {
be.DoSyncChannel(chan, proto, opaque); be.DoSyncChannel(chan, proto, opaque);

View File

@ -128,11 +128,6 @@ class ModuleChanFilter : public Module
return MOD_RES_PASSTHRU; 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) 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); return OnUserPreMessage(user,dest,target_type,text,status,exempt_list);

View File

@ -90,11 +90,6 @@ public:
return MOD_RES_PASSTHRU; return MOD_RES_PASSTHRU;
} }
void OnCleanup(int target_type, void* item)
{
ie.DoCleanup(target_type, item);
}
void OnSyncChannel(Channel* chan, Module* proto, void* opaque) void OnSyncChannel(Channel* chan, Module* proto, void* opaque)
{ {
ie.DoSyncChannel(chan, proto, opaque); ie.DoSyncChannel(chan, proto, opaque);