summaryrefslogtreecommitdiff
path: root/src/gui/windows/emotewindow.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/emotewindow.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/emotewindow.h')
-rw-r--r--src/gui/windows/emotewindow.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/windows/emotewindow.h b/src/gui/windows/emotewindow.h
index f2b771a35..9a326f66b 100644
--- a/src/gui/windows/emotewindow.h
+++ b/src/gui/windows/emotewindow.h
@@ -66,14 +66,14 @@ class EmoteWindow final : public Window
void widgetMoved(const Event &event) override final;
private:
- TabbedArea *mTabs;
- EmotePage *mEmotePage;
- ColorModel *mColorModel;
- ColorPage *mColorPage;
- ScrollArea *mScrollColorPage;
- NamesModel *mFontModel;
- ListBox *mFontPage;
- ScrollArea *mScrollFontPage;
+ TabbedArea *mTabs A_NONNULLPOINTER;
+ EmotePage *mEmotePage A_NONNULLPOINTER;
+ ColorModel *mColorModel A_NONNULLPOINTER;
+ ColorPage *mColorPage A_NONNULLPOINTER;
+ ScrollArea *mScrollColorPage A_NONNULLPOINTER;
+ NamesModel *mFontModel A_NONNULLPOINTER;
+ ListBox *mFontPage A_NONNULLPOINTER;
+ ScrollArea *mScrollFontPage A_NONNULLPOINTER;
ImageSet *mImageSet;
};