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/logindialog.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/logindialog.h')
-rw-r--r-- | src/gui/windows/logindialog.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/gui/windows/logindialog.h b/src/gui/windows/logindialog.h index 0870ab79e..ed2058285 100644 --- a/src/gui/windows/logindialog.h +++ b/src/gui/windows/logindialog.h @@ -86,20 +86,20 @@ class LoginDialog final : public Window, void prepareUpdate(); - LoginData *mLoginData; + LoginData *mLoginData A_NONNULLPOINTER; - TextField *mUserField; - TextField *mPassField; - CheckBox *mKeepCheck; - Label *mUpdateTypeLabel; + TextField *mUserField A_NONNULLPOINTER; + TextField *mPassField A_NONNULLPOINTER; + CheckBox *mKeepCheck A_NONNULLPOINTER; + Label *mUpdateTypeLabel A_NONNULLPOINTER; Label *mUpdateHostLabel; - UpdateTypeModel *mUpdateTypeModel; - DropDown *mUpdateTypeDropDown; - Button *mServerButton; - Button *mLoginButton; - Button *mRegisterButton; - CheckBox *mCustomUpdateHost; - TextField *mUpdateHostText; + UpdateTypeModel *mUpdateTypeModel A_NONNULLPOINTER; + DropDown *mUpdateTypeDropDown A_NONNULLPOINTER; + Button *mServerButton A_NONNULLPOINTER; + Button *mLoginButton A_NONNULLPOINTER; + Button *mRegisterButton A_NONNULLPOINTER; + CheckBox *mCustomUpdateHost A_NONNULLPOINTER; + TextField *mUpdateHostText A_NONNULLPOINTER; UpdateListModel *mUpdateListModel; DropDown *mUpdateHostDropDown; |