diff options
Diffstat (limited to 'src/gui/widgets/checkbox.h')
-rw-r--r-- | src/gui/widgets/checkbox.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gui/widgets/checkbox.h b/src/gui/widgets/checkbox.h index 921c89a93..3452893a1 100644 --- a/src/gui/widgets/checkbox.h +++ b/src/gui/widgets/checkbox.h @@ -109,9 +109,9 @@ class CheckBox final : public Widget, /** * Draws the caption, then calls drawBox to draw the check 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); /** * Update the alpha value to the checkbox components. @@ -126,14 +126,14 @@ class CheckBox final : public Widget, /** * Called when the mouse enteres the widget area. */ - void mouseEntered(MouseEvent& event) override final; + void mouseEntered(MouseEvent& event) final; /** * Called when the mouse leaves the widget area. */ - void mouseExited(MouseEvent& event) override final; + void mouseExited(MouseEvent& event) final; - void keyPressed(KeyEvent& event) override final; + void keyPressed(KeyEvent& event) final; void adjustSize(); @@ -174,15 +174,15 @@ class CheckBox final : public Widget, */ void setCaption(const std::string& caption); - void mouseClicked(MouseEvent& event) override final; + void mouseClicked(MouseEvent& event) final; - void mouseDragged(MouseEvent& event) override final; + void mouseDragged(MouseEvent& event) final; - void setParent(Widget *widget) override final; + void setParent(Widget *widget) final; - void widgetHidden(const Event &event) override final; + void widgetHidden(const Event &event) final; - void setWindow(Widget *const widget) override final; + void setWindow(Widget *const widget) final; private: void toggleSelected(); |