diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-05-18 20:53:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-05-18 20:53:02 +0300 |
commit | e9c0ad590dc46f70e0ab8f48b4fa3c0532314d7f (patch) | |
tree | d29207d095a070988af1e1d0866b1f5d46de1fe9 /src/commandhandler.h | |
parent | 261edddd92ec02c1d278213e730aa30a1fea71d0 (diff) | |
download | plus-e9c0ad590dc46f70e0ab8f48b4fa3c0532314d7f.tar.gz plus-e9c0ad590dc46f70e0ab8f48b4fa3c0532314d7f.tar.bz2 plus-e9c0ad590dc46f70e0ab8f48b4fa3c0532314d7f.tar.xz plus-e9c0ad590dc46f70e0ab8f48b4fa3c0532314d7f.zip |
fix compilation warnings.
Diffstat (limited to 'src/commandhandler.h')
-rw-r--r-- | src/commandhandler.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/commandhandler.h b/src/commandhandler.h index 9ddc567e8..ec75d220f 100644 --- a/src/commandhandler.h +++ b/src/commandhandler.h @@ -71,21 +71,17 @@ class CommandHandler final ChatTab *const tab, const bool warn = false); - void invokeCommand(const int type, - const bool warn = false); + void invokeCommand(const int type); void invokeCommand(const int type, const std::string &args, - ChatTab *const tab, - const bool warn = false); + ChatTab *const tab); void invokeCommand(const int type, - const std::string &args, - const bool warn = false); + const std::string &args); void invokeCommand(const int type, - ChatTab *const tab, - const bool warn = false); + ChatTab *const tab); protected: friend class ChatTab; |