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/worldselectdialog.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/worldselectdialog.h')
-rw-r--r-- | src/gui/windows/worldselectdialog.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/windows/worldselectdialog.h b/src/gui/windows/worldselectdialog.h index f9c5554a2..7100226db 100644 --- a/src/gui/windows/worldselectdialog.h +++ b/src/gui/windows/worldselectdialog.h @@ -68,10 +68,10 @@ class WorldSelectDialog final : public Window, void keyPressed(KeyEvent &event) override final; private: - WorldListModel *mWorldListModel; - ListBox *mWorldList; - Button *mChangeLoginButton; - Button *mChooseWorld; + WorldListModel *mWorldListModel A_NONNULLPOINTER; + ListBox *mWorldList A_NONNULLPOINTER; + Button *mChangeLoginButton A_NONNULLPOINTER; + Button *mChooseWorld A_NONNULLPOINTER; }; #endif // GUI_WINDOWS_WORLDSELECTDIALOG_H |