diff options
author | Johannes Schickel | 2014-05-27 02:04:08 +0200 |
---|---|---|
committer | Johannes Schickel | 2014-05-27 02:04:08 +0200 |
commit | 75a78c89fac67b9b2efffc2c47e3d8daf3eb8022 (patch) | |
tree | 5de624e38c9cd0321f3c08707b0a3a02bfcc4a6f | |
parent | 30d64edac449cde1f1c387b817ec33446ddd4698 (diff) | |
download | scummvm-rg350-75a78c89fac67b9b2efffc2c47e3d8daf3eb8022.tar.gz scummvm-rg350-75a78c89fac67b9b2efffc2c47e3d8daf3eb8022.tar.bz2 scummvm-rg350-75a78c89fac67b9b2efffc2c47e3d8daf3eb8022.zip |
GUI: Don't endorse function naming against our guidelines in docu.
-rw-r--r-- | gui/debugger.h | 4 |
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) \ |