diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-17 20:03:14 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-17 20:03:14 +0300 |
commit | 55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d (patch) | |
tree | b1108bef76eed589fcb0028c4bd97f14510e940f /src/gui/windows/whoisonline.h | |
parent | 72b9b0b8b7f3e0b60bf7a926b44aaa589dd131e8 (diff) | |
download | plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.gz plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.bz2 plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.xz plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.zip |
Remove override keyword, if it present with final.
Diffstat (limited to 'src/gui/windows/whoisonline.h')
-rw-r--r-- | src/gui/windows/whoisonline.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/windows/whoisonline.h b/src/gui/windows/whoisonline.h index 6aee4c139..0fbd2f232 100644 --- a/src/gui/windows/whoisonline.h +++ b/src/gui/windows/whoisonline.h @@ -58,7 +58,7 @@ class WhoIsOnline final : public Window, */ ~WhoIsOnline(); - void postInit() override final; + void postInit() final; #ifdef TMWA_SUPPORT /** @@ -70,15 +70,15 @@ class WhoIsOnline final : public Window, void loadList(const std::vector<OnlinePlayer*> &list); void handleLink(const std::string& link, - MouseEvent *event) override final; + MouseEvent *event) final; - void logic() override final; + void logic() final; void slowLogic(); - void action(const ActionEvent &event) override final; + void action(const ActionEvent &event) final; - void widgetResized(const Event &event) override final; + void widgetResized(const Event &event) final; const std::set<OnlinePlayer*> &getOnlinePlayers() const A_WARN_UNUSED { return mOnlinePlayers; } @@ -89,7 +89,7 @@ class WhoIsOnline final : public Window, void setAllowUpdate(const bool n) { mAllowUpdate = n; } - void optionChanged(const std::string &name) override final; + void optionChanged(const std::string &name) final; void updateList(StringVect &list); |