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/changepassworddialog.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/changepassworddialog.h')
-rw-r--r-- | src/gui/windows/changepassworddialog.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gui/windows/changepassworddialog.h b/src/gui/windows/changepassworddialog.h index 9acdee5c1..68e84c7b1 100644 --- a/src/gui/windows/changepassworddialog.h +++ b/src/gui/windows/changepassworddialog.h @@ -61,16 +61,16 @@ class ChangePasswordDialog final : public Window, void action(const ActionEvent &event) override final; private: - TextField *mOldPassField; - TextField *mFirstPassField; - TextField *mSecondPassField; + TextField *mOldPassField A_NONNULLPOINTER; + TextField *mFirstPassField A_NONNULLPOINTER; + TextField *mSecondPassField A_NONNULLPOINTER; - Button *mChangePassButton; - Button *mCancelButton; + Button *mChangePassButton A_NONNULLPOINTER; + Button *mCancelButton A_NONNULLPOINTER; - WrongDataNoticeListener *mWrongDataNoticeListener; + WrongDataNoticeListener *mWrongDataNoticeListener A_NONNULLPOINTER; - LoginData *mLoginData; + LoginData *mLoginData A_NONNULLPOINTER; }; #endif // GUI_WINDOWS_CHANGEPASSWORDDIALOG_H |