diff options
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; |