diff options
Diffstat (limited to 'src/gui/charselectdialog.h')
-rw-r--r-- | src/gui/charselectdialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/charselectdialog.h b/src/gui/charselectdialog.h index d30e4e68..2deb5a7d 100644 --- a/src/gui/charselectdialog.h +++ b/src/gui/charselectdialog.h @@ -84,14 +84,14 @@ class CharSelectDialog : public Window, public gcn::ActionListener, void unlock(); void setLocked(bool locked); - bool mLocked; + bool mLocked = false; gcn::Label *mAccountNameLabel; gcn::Button *mSwitchLoginButton; gcn::Button *mChangePasswordButton; - gcn::Button *mUnregisterButton; - gcn::Button *mChangeEmailButton; + gcn::Button *mUnregisterButton = nullptr; + gcn::Button *mChangeEmailButton = nullptr; /** The player boxes */ std::vector<CharacterDisplay*> mCharacterEntries; |