diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-06-08 17:54:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-06-08 23:41:37 +0300 |
commit | 763e91044a4e9c8905ee082457cb42da36a38cc0 (patch) | |
tree | a73f68e02e083fc9b236ea7a18ef406dd5ea0a46 /src/gui/widgets | |
parent | dd3b6609584e59e8c3b67624c9800c5d0e2a2208 (diff) | |
download | plus-763e91044a4e9c8905ee082457cb42da36a38cc0.tar.gz plus-763e91044a4e9c8905ee082457cb42da36a38cc0.tar.bz2 plus-763e91044a4e9c8905ee082457cb42da36a38cc0.tar.xz plus-763e91044a4e9c8905ee082457cb42da36a38cc0.zip |
Add missing function parameters.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/tabs/chat/chattab.h | 4 | ||||
-rw-r--r-- | src/gui/widgets/tabs/chat/partytab.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/tabs/chat/chattab.h b/src/gui/widgets/tabs/chat/chattab.h index e3bdf1c1e..440501af4 100644 --- a/src/gui/widgets/tabs/chat/chattab.h +++ b/src/gui/widgets/tabs/chat/chattab.h @@ -191,10 +191,10 @@ class ChatTab notfinal : public Tab virtual void handleHelp(const std::string &msg); - virtual void getAutoCompleteList(StringVect&) const + virtual void getAutoCompleteList(StringVect &names A_UNUSED) const {} - virtual void getAutoCompleteCommands(StringVect&) const + virtual void getAutoCompleteCommands(StringVect &names A_UNUSED) const {} void addRow(std::string &line); diff --git a/src/gui/widgets/tabs/chat/partytab.h b/src/gui/widgets/tabs/chat/partytab.h index 733f256c9..a987c9362 100644 --- a/src/gui/widgets/tabs/chat/partytab.h +++ b/src/gui/widgets/tabs/chat/partytab.h @@ -48,7 +48,7 @@ class PartyTab notfinal : public ChatTab, protected: void handleInput(const std::string &msg) override final; - void getAutoCompleteList(StringVect&) const override final; + void getAutoCompleteList(StringVect &names) const override final; void getAutoCompleteCommands(StringVect &names) const override final; }; |