diff options
Diffstat (limited to 'src/gui/widgets/label.h')
-rw-r--r-- | src/gui/widgets/label.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/widgets/label.h b/src/gui/widgets/label.h index e21a510a3..98c7cc6ac 100644 --- a/src/gui/widgets/label.h +++ b/src/gui/widgets/label.h @@ -110,9 +110,9 @@ class Label final : public Widget, /** * Draws the label. */ - void draw(Graphics *const graphics) final A_NONNULL(2); + void draw(Graphics *const graphics) override final A_NONNULL(2); - void safeDraw(Graphics *const graphics) final A_NONNULL(2); + void safeDraw(Graphics *const graphics) override final A_NONNULL(2); void adjustSize(); @@ -162,11 +162,11 @@ class Label final : public Widget, Graphics::Alignment getAlignment() const { return mAlignment; } - void setParent(Widget *const widget) final; + void setParent(Widget *const widget) override final; - void setWindow(Widget *const widget) final; + void setWindow(Widget *const widget) override final; - void widgetHidden(const Event &event) final; + void widgetHidden(const Event &event) override final; static Skin *mSkin; |