summaryrefslogtreecommitdiff
path: root/src/gui/windows/shopwindow.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-20 16:12:52 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-20 16:12:52 +0300
commit6073c6da086f3d1eec0fed731dc3fa5d8808fa0d (patch)
treeeb4b3ee40202a8b982de3772152643e70ebd4118 /src/gui/windows/shopwindow.h
parentcc939bec81af517d0e430064d872e3388116d16e (diff)
downloadplus-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/shopwindow.h')
-rw-r--r--src/gui/windows/shopwindow.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/windows/shopwindow.h b/src/gui/windows/shopwindow.h
index ea70bf3c2..73520eadd 100644
--- a/src/gui/windows/shopwindow.h
+++ b/src/gui/windows/shopwindow.h
@@ -174,18 +174,18 @@ class ShopWindow final : public Window,
typedef std::list<ShopWindow*> DialogList;
static DialogList instances;
- Button *mCloseButton;
+ Button *mCloseButton A_NONNULLPOINTER;
- ShopItems *mBuyShopItems;
- ShopItems *mSellShopItems;
+ ShopItems *mBuyShopItems A_NONNULLPOINTER;
+ ShopItems *mSellShopItems A_NONNULLPOINTER;
ShopItem *mTradeItem;
- ShopListBox *mBuyShopItemList;
- ShopListBox *mSellShopItemList;
+ ShopListBox *mBuyShopItemList A_NONNULLPOINTER;
+ ShopListBox *mSellShopItemList A_NONNULLPOINTER;
ShopListBox *mCurrentShopItemList;
- ScrollArea *mScrollArea;
- Button *mAddButton;
- Button *mDeleteButton;
+ ScrollArea *mScrollArea A_NONNULLPOINTER;
+ Button *mAddButton A_NONNULLPOINTER;
+ Button *mDeleteButton A_NONNULLPOINTER;
Button *mAnnounceButton;
Button *mPublishButton;
Button *mRenameButton;