summaryrefslogtreecommitdiff
path: root/src/commandhandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-05-18 20:53:02 +0300
committerAndrei Karas <akaras@inbox.ru>2013-05-18 20:53:02 +0300
commite9c0ad590dc46f70e0ab8f48b4fa3c0532314d7f (patch)
treed29207d095a070988af1e1d0866b1f5d46de1fe9 /src/commandhandler.h
parent261edddd92ec02c1d278213e730aa30a1fea71d0 (diff)
downloadplus-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.h12
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;