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/charselectdialog.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/charselectdialog.h')
-rw-r--r-- | src/gui/windows/charselectdialog.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/windows/charselectdialog.h b/src/gui/windows/charselectdialog.h index 35e02eb35..6827a78ea 100644 --- a/src/gui/windows/charselectdialog.h +++ b/src/gui/windows/charselectdialog.h @@ -107,15 +107,15 @@ class CharSelectDialog final : public Window, void unlock(); void setLocked(const bool locked); - LoginData *mLoginData; + LoginData *mLoginData A_NONNULLPOINTER; - Button *mSwitchLoginButton; - Button *mChangePasswordButton; + Button *mSwitchLoginButton A_NONNULLPOINTER; + Button *mChangePasswordButton A_NONNULLPOINTER; Button *mUnregisterButton; Button *mChangeEmailButton; - Button *mPlayButton; - Button *mInfoButton; - Button *mDeleteButton; + Button *mPlayButton A_NONNULLPOINTER; + Button *mInfoButton A_NONNULLPOINTER; + Button *mDeleteButton A_NONNULLPOINTER; Button *mRenameButton; CharacterViewBase *mCharacterView; |