summaryrefslogtreecommitdiff
path: root/src/gui/widgets/textbox.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-24 01:13:26 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-24 01:13:26 +0300
commit1498a699f89f7b5aebdc4629c645c3702ee04f92 (patch)
tree24d74cc7efc31ba2447c76ad301e3192e38b4cf4 /src/gui/widgets/textbox.h
parentc551f8981eba838d07245d1597e9deaa00427cee (diff)
downloadplus-1498a699f89f7b5aebdc4629c645c3702ee04f92.tar.gz
plus-1498a699f89f7b5aebdc4629c645c3702ee04f92.tar.bz2
plus-1498a699f89f7b5aebdc4629c645c3702ee04f92.tar.xz
plus-1498a699f89f7b5aebdc4629c645c3702ee04f92.zip
Add A_NONNULL attribute to all parameters with class Graphics.
Diffstat (limited to 'src/gui/widgets/textbox.h')
-rw-r--r--src/gui/widgets/textbox.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gui/widgets/textbox.h b/src/gui/widgets/textbox.h
index 611efd4a0..6fe3aefd9 100644
--- a/src/gui/widgets/textbox.h
+++ b/src/gui/widgets/textbox.h
@@ -107,9 +107,9 @@ class TextBox final : public Widget,
void keyPressed(KeyEvent& event) override final;
- void draw(Graphics* graphics) override final;
+ void draw(Graphics* graphics) override final A_NONNULL(2);
- void safeDraw(Graphics* graphics) override final;
+ void safeDraw(Graphics* graphics) override final A_NONNULL(2);
void setForegroundColor(const Color &color);
@@ -287,7 +287,9 @@ class TextBox final : public Widget,
* @param x the x position.
* @param y the y position.
*/
- void drawCaret(Graphics *const graphics, const int x, const int y);
+ void drawCaret(Graphics *const graphics,
+ const int x,
+ const int y) A_NONNULL(2);
/**
* Adjusts the text box's size to fit the text.