summaryrefslogtreecommitdiff
path: root/src/gui/widgets/checkbox.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/checkbox.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/checkbox.h')
-rw-r--r--src/gui/widgets/checkbox.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/checkbox.h b/src/gui/widgets/checkbox.h
index 2f2fe812d..23b75ddae 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;
+ void draw(Graphics *const graphics) override final A_NONNULL(2);
- void safeDraw(Graphics *const graphics) override final;
+ void safeDraw(Graphics *const graphics) override final A_NONNULL(2);
/**
* Update the alpha value to the checkbox components.
@@ -121,7 +121,7 @@ class CheckBox final : public Widget,
/**
* Draws the check box, not the caption.
*/
- void drawBox(Graphics *const graphics);
+ void drawBox(Graphics *const graphics) A_NONNULL(2);
/**
* Called when the mouse enteres the widget area.