diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-20 16:12:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-20 16:12:52 +0300 |
commit | 6073c6da086f3d1eec0fed731dc3fa5d8808fa0d (patch) | |
tree | eb4b3ee40202a8b982de3772152643e70ebd4118 /src/gui/windows/itemamountwindow.h | |
parent | cc939bec81af517d0e430064d872e3388116d16e (diff) | |
download | mv-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.gz mv-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.bz2 mv-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.xz mv-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.zip |
Add missing checks or attributes to windows.
Diffstat (limited to 'src/gui/windows/itemamountwindow.h')
-rw-r--r-- | src/gui/windows/itemamountwindow.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/gui/windows/itemamountwindow.h b/src/gui/windows/itemamountwindow.h index c371ffbaa..04516812e 100644 --- a/src/gui/windows/itemamountwindow.h +++ b/src/gui/windows/itemamountwindow.h @@ -107,16 +107,18 @@ class ItemAmountWindow final : public Window, Item *const item, const int maxRange = 0); - IntTextField *mItemAmountTextField; /**< Item amount caption. */ - IntTextField *mItemPriceTextField; /**< Item price caption. */ + /**< Item amount caption. */ + IntTextField *mItemAmountTextField A_NONNULLPOINTER; + /**< Item price caption. */ + IntTextField *mItemPriceTextField; Label *mGPLabel; Item *mItem; - Icon *mItemIcon; + Icon *mItemIcon A_NONNULLPOINTER; /** * Item Amount buttons. */ - Slider *mItemAmountSlide; + Slider *mItemAmountSlide A_NONNULLPOINTER; Slider *mItemPriceSlide; DropDown *mItemDropDown; ItemsModal *mItemsModal; |