aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGravatar Attila Molnar2015-02-15 17:56:01 +0100
committerGravatar Attila Molnar2015-02-15 17:56:01 +0100
commitbfc1abbcad598fcbc6921fa72b950144b13e059f (patch)
tree7a43677d5512d8e1c0f6c8151beae9e85ec7b846 /include
parentRemove I_BEGIN from enum Implementation (diff)
Convert mods calling the old compat wrapper of ModuleManager::SetPriority() to use the current method, remove wrapper
Diffstat (limited to 'include')
-rw-r--r--include/modules.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/modules.h b/include/modules.h
index 9b45eb3c8..62078bbfa 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -1116,12 +1116,6 @@ class CoreExport ModuleManager : public fakederef<ModuleManager>
*/
bool SetPriority(Module* mod, Implementation i, Priority s, Module* which = NULL);
- /** Backwards compat interface */
- inline bool SetPriority(Module* mod, Implementation i, Priority s, Module** dptr)
- {
- return SetPriority(mod, i, s, *dptr);
- }
-
/** Change the priority of all events in a module.
* @param mod The module to set the priority of
* @param s The priority of all events in the module.