diff options
Diffstat (limited to 'src/gui/popups/itempopup.h')
-rw-r--r-- | src/gui/popups/itempopup.h | 12 |
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; |