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/chatwindow.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/chatwindow.h')
-rw-r--r-- | src/gui/windows/chatwindow.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/windows/chatwindow.h b/src/gui/windows/chatwindow.h index ea71e4716..57ff1230d 100644 --- a/src/gui/windows/chatwindow.h +++ b/src/gui/windows/chatwindow.h @@ -360,13 +360,13 @@ class ChatWindow final : public Window, std::string partName); /** Used for showing item popup on clicking links **/ - ItemLinkHandler *mItemLinkHandler; + ItemLinkHandler *mItemLinkHandler A_NONNULLPOINTER; /** Tabbed area for holding each channel. */ - TabbedArea *mChatTabs; + TabbedArea *mChatTabs A_NONNULLPOINTER; /** Input box for typing chat messages. */ - ChatInput *mChatInput; + ChatInput *mChatInput A_NONNULLPOINTER; void initTradeFilter(); @@ -401,9 +401,9 @@ class ChatWindow final : public Window, StringVect mTradeFilter; - ColorListModel *mColorListModel; - DropDown *mColorPicker; - Button *mChatButton; + ColorListModel *mColorListModel A_NONNULLPOINTER; + DropDown *mColorPicker A_NONNULLPOINTER; + Button *mChatButton A_NONNULLPOINTER; std::list<std::string> mAwayLog; StringVect mHighlights; StringVect mGlobalsFilter; |