aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorJohannes Schickel2014-05-27 02:04:08 +0200
committerJohannes Schickel2014-05-27 02:04:08 +0200
commit75a78c89fac67b9b2efffc2c47e3d8daf3eb8022 (patch)
tree5de624e38c9cd0321f3c08707b0a3a02bfcc4a6f /gui
parent30d64edac449cde1f1c387b817ec33446ddd4698 (diff)
downloadscummvm-rg350-75a78c89fac67b9b2efffc2c47e3d8daf3eb8022.tar.gz
scummvm-rg350-75a78c89fac67b9b2efffc2c47e3d8daf3eb8022.tar.bz2
scummvm-rg350-75a78c89fac67b9b2efffc2c47e3d8daf3eb8022.zip
GUI: Don't endorse function naming against our guidelines in docu.
Diffstat (limited to 'gui')
-rw-r--r--gui/debugger.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/debugger.h b/gui/debugger.h
index dc81fcb891..319fa68dae 100644
--- a/gui/debugger.h
+++ b/gui/debugger.h
@@ -74,8 +74,8 @@ protected:
* Convenience macro that makes it easier to register a method
* of a debugger subclass as a command.
* Usage example:
- * registerCmd("COMMAND", WRAP_METHOD(MyDebugger, MyCmd));
- * would register the method MyDebugger::MyCmd(int, const char **)
+ * registerCmd("COMMAND", WRAP_METHOD(MyDebugger, myCmd));
+ * would register the method MyDebugger::myCmd(int, const char **)
* under the command name "COMMAND".
*/
#define WRAP_METHOD(cls, method) \