From 55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 17 Apr 2016 20:03:14 +0300 Subject: Remove override keyword, if it present with final. --- src/gui/windowmenu.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/gui/windowmenu.h') diff --git a/src/gui/windowmenu.h b/src/gui/windowmenu.h index cf9d701f7..70d731b83 100644 --- a/src/gui/windowmenu.h +++ b/src/gui/windowmenu.h @@ -57,13 +57,13 @@ class WindowMenu final : public Container, ~WindowMenu(); - void action(const ActionEvent &event) override final; + void action(const ActionEvent &event) final; - void mousePressed(MouseEvent &event) override final; + void mousePressed(MouseEvent &event) final; - void mouseMoved(MouseEvent &event) override final; + void mouseMoved(MouseEvent &event) final; - void mouseExited(MouseEvent& event A_UNUSED) override final; + void mouseExited(MouseEvent& event A_UNUSED) final; std::map &getButtonNames() A_WARN_UNUSED { return mButtonNames; } @@ -80,17 +80,17 @@ class WindowMenu final : public Container, void saveButtons() const; - void optionChanged(const std::string &name) override final; + void optionChanged(const std::string &name) final; #ifdef USE_PROFILER void logicChildren(); #endif protected: - void drawChildren(Graphics *const graphics) override final + void drawChildren(Graphics *const graphics) final A_NONNULL(2); - void safeDrawChildren(Graphics *const graphics) override final + void safeDrawChildren(Graphics *const graphics) final A_NONNULL(2); private: -- cgit v1.2.3-60-g2f50