summaryrefslogtreecommitdiff
path: root/src/gui/windows/registerdialog.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/registerdialog.h
parentcc939bec81af517d0e430064d872e3388116d16e (diff)
downloadmv-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.gz
mv-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.bz2
mv-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.xz
mv-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.zip
Add missing checks or attributes to windows.
Diffstat (limited to 'src/gui/windows/registerdialog.h')
-rw-r--r--src/gui/windows/registerdialog.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gui/windows/registerdialog.h b/src/gui/windows/registerdialog.h
index f01d1ca45..2c7229b38 100644
--- a/src/gui/windows/registerdialog.h
+++ b/src/gui/windows/registerdialog.h
@@ -80,17 +80,17 @@ class RegisterDialog final : public Window,
*/
bool canSubmit() const;
- LoginData *mLoginData;
- TextField *mUserField;
- TextField *mPasswordField;
- TextField *mConfirmField;
+ LoginData *mLoginData A_NONNULLPOINTER;
+ TextField *mUserField A_NONNULLPOINTER;
+ TextField *mPasswordField A_NONNULLPOINTER;
+ TextField *mConfirmField A_NONNULLPOINTER;
TextField *mEmailField;
- Button *mRegisterButton;
- Button *mCancelButton;
+ Button *mRegisterButton A_NONNULLPOINTER;
+ Button *mCancelButton A_NONNULLPOINTER;
RadioButton *mMaleButton;
RadioButton *mFemaleButton;
RadioButton *mOtherButton;
- WrongDataNoticeListener *mWrongDataNoticeListener;
+ WrongDataNoticeListener *mWrongDataNoticeListener A_NONNULLPOINTER;
};
#endif // GUI_WINDOWS_REGISTERDIALOG_H