summaryrefslogtreecommitdiff
path: root/src/gui/popups/itempopup.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/itempopup.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/itempopup.h')
-rw-r--r--src/gui/popups/itempopup.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/popups/itempopup.h b/src/gui/popups/itempopup.h
index a66262473..fb2a935ca 100644
--- a/src/gui/popups/itempopup.h
+++ b/src/gui/popups/itempopup.h
@@ -75,13 +75,13 @@ class ItemPopup final : public Popup
private:
std::string getCardsString(const int *const cards);
- Label *mItemName;
- TextBox *mItemDesc;
- TextBox *mItemEffect;
- TextBox *mItemWeight;
- TextBox *mItemCards;
+ Label *mItemName A_NONNULLPOINTER;
+ TextBox *mItemDesc A_NONNULLPOINTER;
+ TextBox *mItemEffect A_NONNULLPOINTER;
+ TextBox *mItemWeight A_NONNULLPOINTER;
+ TextBox *mItemCards A_NONNULLPOINTER;
ItemType::Type mItemType;
- Icon *mIcon;
+ Icon *mIcon A_NONNULLPOINTER;
std::string mLastName;
int mLastId;
ItemColor mLastColor;