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/tradewindow.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/tradewindow.h')
-rw-r--r-- | src/gui/windows/tradewindow.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gui/windows/tradewindow.h b/src/gui/windows/tradewindow.h index b1ac84045..d82714816 100644 --- a/src/gui/windows/tradewindow.h +++ b/src/gui/windows/tradewindow.h @@ -178,17 +178,17 @@ class TradeWindow final : public Window, */ void setStatus(const Status s); - Inventory *mMyInventory; - Inventory *mPartnerInventory; + Inventory *mMyInventory A_NONNULLPOINTER; + Inventory *mPartnerInventory A_NONNULLPOINTER; - ItemContainer *mMyItemContainer; - ItemContainer *mPartnerItemContainer; + ItemContainer *mMyItemContainer A_NONNULLPOINTER; + ItemContainer *mPartnerItemContainer A_NONNULLPOINTER; - Label *mMoneyLabel; - Button *mAddButton; - Button *mOkButton; - Button *mMoneyChangeButton; - TextField *mMoneyField; + Label *mMoneyLabel A_NONNULLPOINTER; + Button *mAddButton A_NONNULLPOINTER; + Button *mOkButton A_NONNULLPOINTER; + Button *mMoneyChangeButton A_NONNULLPOINTER; + TextField *mMoneyField A_NONNULLPOINTER; Item* mAutoAddItem; std::string mAutoAddToNick; |