diff options
Diffstat (limited to 'src/gui/widgets/textfield.h')
-rw-r--r-- | src/gui/widgets/textfield.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/textfield.h b/src/gui/widgets/textfield.h index 75c3d9253..6e77b5e1a 100644 --- a/src/gui/widgets/textfield.h +++ b/src/gui/widgets/textfield.h @@ -119,9 +119,9 @@ class TextField notfinal : public Widget, /** * Draws the background and border. */ - void drawFrame(Graphics *graphics) override final; + void drawFrame(Graphics *graphics) override final A_NONNULL(2); - void safeDrawFrame(Graphics *graphics) override final; + void safeDrawFrame(Graphics *graphics) override final A_NONNULL(2); /** * Determine whether the field should be numeric or not @@ -234,7 +234,7 @@ class TextField notfinal : public Widget, void setWindow(Widget *const widget) override final; protected: - void drawCaret(Graphics* graphics, int x); + void drawCaret(Graphics* graphics, int x) A_NONNULL(2); void fixScroll(); |