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/widgets/shoplistbox.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/widgets/shoplistbox.h')
-rw-r--r-- | src/gui/widgets/shoplistbox.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/widgets/shoplistbox.h b/src/gui/widgets/shoplistbox.h index cc4504c82..ce29c0247 100644 --- a/src/gui/widgets/shoplistbox.h +++ b/src/gui/widgets/shoplistbox.h @@ -55,9 +55,9 @@ class ShopListBox final : public ListBox /** * Draws the list box. */ - void draw(Graphics *const graphics) override final A_NONNULL(2); + void draw(Graphics *const graphics) final A_NONNULL(2); - void safeDraw(Graphics *const graphics) override final A_NONNULL(2); + void safeDraw(Graphics *const graphics) final A_NONNULL(2); /** * gives information about the current player's money @@ -67,7 +67,7 @@ class ShopListBox final : public ListBox /** * Adjust List draw size */ - void adjustSize() override final; + void adjustSize() final; /** * Set on/off the disabling of too expensive items. @@ -75,11 +75,11 @@ class ShopListBox final : public ListBox */ void setPriceCheck(const bool check); - void mouseMoved(MouseEvent &event) override final; + void mouseMoved(MouseEvent &event) final; - void mouseReleased(MouseEvent& event) override final; + void mouseReleased(MouseEvent& event) final; - void mouseExited(MouseEvent& event) override final; + void mouseExited(MouseEvent& event) final; void setProtectItems(bool p) { mProtectItems = p; } |