diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-02-15 17:58:47 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-02-15 17:58:47 +0100 |
commit | 7bea24293aae2edb54f748101b45f52aca027a96 (patch) | |
tree | cdfc0d6f31294a6735be9a382f52155774930e65 /include | |
parent | bfc1abbcad598fcbc6921fa72b950144b13e059f (diff) |
Eliminate constant return value of the all events version of ModuleManager::SetPriority()
Diffstat (limited to 'include')
-rw-r--r-- | include/modules.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules.h b/include/modules.h index 62078bbfa..41dec1194 100644 --- a/include/modules.h +++ b/include/modules.h @@ -1124,7 +1124,7 @@ class CoreExport ModuleManager : public fakederef<ModuleManager> * SetPriority method for this, where you may specify other modules to * be prioritized against. */ - bool SetPriority(Module* mod, Priority s); + void SetPriority(Module* mod, Priority s); /** Attach an event to a module. * You may later detatch the event with ModuleManager::Detach(). |