summaryrefslogtreecommitdiff
path: root/src/gui/widgets/dropdown.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-24 01:38:17 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-25 15:07:14 +0300
commit233f2b564e7707f79deb493444f28363ac10bfd4 (patch)
treeee9d960c24e68f7ce9da05ee9a0333a74615565d /src/gui/widgets/dropdown.h
parent1498a699f89f7b5aebdc4629c645c3702ee04f92 (diff)
downloadplus-233f2b564e7707f79deb493444f28363ac10bfd4.tar.gz
plus-233f2b564e7707f79deb493444f28363ac10bfd4.tar.bz2
plus-233f2b564e7707f79deb493444f28363ac10bfd4.tar.xz
plus-233f2b564e7707f79deb493444f28363ac10bfd4.zip
Add missing checks on nonnull attributes to widgets.
Diffstat (limited to 'src/gui/widgets/dropdown.h')
-rw-r--r--src/gui/widgets/dropdown.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/dropdown.h b/src/gui/widgets/dropdown.h
index df8e93d49..e07e783c7 100644
--- a/src/gui/widgets/dropdown.h
+++ b/src/gui/widgets/dropdown.h
@@ -143,7 +143,7 @@ class DropDown final : public ActionListener,
*
* @param graphics a Graphics object to draw with.
*/
- void drawButton(Graphics *graphics);
+ void drawButton(Graphics *graphics) A_NONNULL(2);
PopupList *mPopup;
Color mShadowColor;