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/questswindow.h | |
parent | cc939bec81af517d0e430064d872e3388116d16e (diff) | |
download | manaverse-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.gz manaverse-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.bz2 manaverse-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.xz manaverse-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.zip |
Add missing checks or attributes to windows.
Diffstat (limited to 'src/gui/windows/questswindow.h')
-rw-r--r-- | src/gui/windows/questswindow.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gui/windows/questswindow.h b/src/gui/windows/questswindow.h index 0430569a3..031f239cd 100644 --- a/src/gui/windows/questswindow.h +++ b/src/gui/windows/questswindow.h @@ -77,13 +77,13 @@ class QuestsWindow final : public Window, void loadEffect(const int var, const XmlNodePtr node); - QuestsModel *mQuestsModel; - ExtendedListBox *mQuestsListBox; - ScrollArea *mQuestScrollArea; - ItemLinkHandler *mItemLinkHandler; - BrowserBox *mText; - ScrollArea *mTextScrollArea; - Button *mCloseButton; + QuestsModel *mQuestsModel A_NONNULLPOINTER; + ExtendedListBox *mQuestsListBox A_NONNULLPOINTER; + ScrollArea *mQuestScrollArea A_NONNULLPOINTER; + ItemLinkHandler *mItemLinkHandler A_NONNULLPOINTER; + BrowserBox *mText A_NONNULLPOINTER; + ScrollArea *mTextScrollArea A_NONNULLPOINTER; + Button *mCloseButton A_NONNULLPOINTER; Image *mCompleteIcon; Image *mIncompleteIcon; // quest variables: var, value |