summaryrefslogtreecommitdiff
path: root/src/gui/popups/beingpopup.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-20 16:13:21 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-20 16:13:45 +0300
commit32b055d5738256c4a3e653a3e7b41d86739a3b74 (patch)
tree954b6bae7bc0a19cbfd2ffd103dd0265769baf80 /src/gui/popups/beingpopup.h
parent6073c6da086f3d1eec0fed731dc3fa5d8808fa0d (diff)
downloadplus-32b055d5738256c4a3e653a3e7b41d86739a3b74.tar.gz
plus-32b055d5738256c4a3e653a3e7b41d86739a3b74.tar.bz2
plus-32b055d5738256c4a3e653a3e7b41d86739a3b74.tar.xz
plus-32b055d5738256c4a3e653a3e7b41d86739a3b74.zip
Add missing checks or attributes to popups.
Diffstat (limited to 'src/gui/popups/beingpopup.h')
-rw-r--r--src/gui/popups/beingpopup.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/popups/beingpopup.h b/src/gui/popups/beingpopup.h
index eba961063..c6f2a4a40 100644
--- a/src/gui/popups/beingpopup.h
+++ b/src/gui/popups/beingpopup.h
@@ -57,14 +57,14 @@ class BeingPopup final : public Popup
#endif
private:
- Label *mBeingName;
- Label *mBeingParty;
- Label *mBeingGuild;
- Label *mBeingRank;
- Label *mBeingComment;
- Label *mBeingBuyBoard;
- Label *mBeingSellBoard;
- Label *mBeingRoom;
+ Label *mBeingName A_NONNULLPOINTER;
+ Label *mBeingParty A_NONNULLPOINTER;
+ Label *mBeingGuild A_NONNULLPOINTER;
+ Label *mBeingRank A_NONNULLPOINTER;
+ Label *mBeingComment A_NONNULLPOINTER;
+ Label *mBeingBuyBoard A_NONNULLPOINTER;
+ Label *mBeingSellBoard A_NONNULLPOINTER;
+ Label *mBeingRoom A_NONNULLPOINTER;
};
extern BeingPopup *beingPopup;