diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-09-18 19:46:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-09-18 21:52:08 +0300 |
commit | c0d5142d1ed98b62ad87603fa9d2620dce256bd7 (patch) | |
tree | 6acc4c089999353ef39c83c3bef34bbf89dbfdd3 /src/commandhandler.cpp | |
parent | e85c6227064c905945a4d49a5e11a0078243a1ac (diff) | |
download | plus-c0d5142d1ed98b62ad87603fa9d2620dce256bd7.tar.gz plus-c0d5142d1ed98b62ad87603fa9d2620dce256bd7.tar.bz2 plus-c0d5142d1ed98b62ad87603fa9d2620dce256bd7.tar.xz plus-c0d5142d1ed98b62ad87603fa9d2620dce256bd7.zip |
add consts in gui classes.
Diffstat (limited to 'src/commandhandler.cpp')
-rw-r--r-- | src/commandhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commandhandler.cpp b/src/commandhandler.cpp index cc16c267f..a66a9d3e1 100644 --- a/src/commandhandler.cpp +++ b/src/commandhandler.cpp @@ -82,7 +82,7 @@ void CommandHandler::handleCommand(const std::string &command, void CommandHandler::invokeCommand(const std::string &type, const std::string &args, ChatTab *const tab, - const bool warn) + const bool warn) const { const CommandsMapIter it = mCommands.find(type); if (it != mCommands.end()) @@ -103,7 +103,7 @@ void CommandHandler::callFunc(const CommandInfo &info, const std::string &args, ChatTab *const tab) { - CommandFuncPtr func = info.func; + const CommandFuncPtr func = info.func; if (func) func(args, tab); else |