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/buydialog.h | |
parent | cc939bec81af517d0e430064d872e3388116d16e (diff) | |
download | plus-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.gz plus-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.bz2 plus-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.xz plus-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.zip |
Add missing checks or attributes to windows.
Diffstat (limited to 'src/gui/windows/buydialog.h')
-rw-r--r-- | src/gui/windows/buydialog.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/gui/windows/buydialog.h b/src/gui/windows/buydialog.h index 104b5c4ee..dbb84b0ef 100644 --- a/src/gui/windows/buydialog.h +++ b/src/gui/windows/buydialog.h @@ -158,22 +158,22 @@ class BuyDialog final : public Window, typedef std::list<BuyDialog*> DialogList; static DialogList instances; - Button *mBuyButton; - Button *mQuitButton; - Button *mAddMaxButton; - Button *mIncreaseButton; - Button *mDecreaseButton; - ShopListBox *mShopItemList; - ScrollArea *mScrollArea; - Label *mMoneyLabel; - Label *mQuantityLabel; - Slider *mSlider; - Label *mAmountLabel; - IntTextField *mAmountField; - ShopItems *mShopItems; + Button *mBuyButton A_NONNULLPOINTER; + Button *mQuitButton A_NONNULLPOINTER; + Button *mAddMaxButton A_NONNULLPOINTER; + Button *mIncreaseButton A_NONNULLPOINTER; + Button *mDecreaseButton A_NONNULLPOINTER; + ShopListBox *mShopItemList A_NONNULLPOINTER; + ScrollArea *mScrollArea A_NONNULLPOINTER; + Label *mMoneyLabel A_NONNULLPOINTER; + Label *mQuantityLabel A_NONNULLPOINTER; + Slider *mSlider A_NONNULLPOINTER; + Label *mAmountLabel A_NONNULLPOINTER; + IntTextField *mAmountField A_NONNULLPOINTER; + ShopItems *mShopItems A_NONNULLPOINTER; SortListModelBuy *mSortModel; DropDown *mSortDropDown; - TextField *mFilterTextField; + TextField *mFilterTextField A_NONNULLPOINTER; Label *mFilterLabel; BeingId mNpcId; |