summaryrefslogtreecommitdiff
path: root/src/net/tmwa/gui/guildtab.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa/gui/guildtab.h')
-rw-r--r--src/net/tmwa/gui/guildtab.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/net/tmwa/gui/guildtab.h b/src/net/tmwa/gui/guildtab.h
index 0e208e93..e7d7b7cc 100644
--- a/src/net/tmwa/gui/guildtab.h
+++ b/src/net/tmwa/gui/guildtab.h
@@ -33,18 +33,18 @@ class GuildTab : public ChatTab
{
public:
GuildTab();
- ~GuildTab();
+ ~GuildTab() override;
- void showHelp();
+ void showHelp() override;
- bool handleCommand(const std::string &type, const std::string &args);
+ bool handleCommand(const std::string &type, const std::string &args) override;
- void saveToLogFile(std::string &msg);
+ void saveToLogFile(std::string &msg) override;
protected:
- void handleInput(const std::string &msg);
+ void handleInput(const std::string &msg) override;
- void getAutoCompleteList(std::vector<std::string> &names) const;
+ void getAutoCompleteList(std::vector<std::string> &names) const override;
};
extern GuildTab *guildTab;