summaryrefslogtreecommitdiff
path: root/include/modules.h
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2015-02-15 17:56:01 +0100
committerAttila Molnar <attilamolnar@hush.com>2015-02-15 17:56:01 +0100
commitbfc1abbcad598fcbc6921fa72b950144b13e059f (patch)
tree7a43677d5512d8e1c0f6c8151beae9e85ec7b846 /include/modules.h
parent9597d205e72b709f1be2645fda17079f6d77386d (diff)
Convert mods calling the old compat wrapper of ModuleManager::SetPriority() to use the current method, remove wrapper
Diffstat (limited to 'include/modules.h')
-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.