diff options
Diffstat (limited to 'src/gui/windows/changepassworddialog.cpp')
-rw-r--r-- | src/gui/windows/changepassworddialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/changepassworddialog.cpp b/src/gui/windows/changepassworddialog.cpp index 051448e6f..e0750b8bf 100644 --- a/src/gui/windows/changepassworddialog.cpp +++ b/src/gui/windows/changepassworddialog.cpp @@ -93,7 +93,7 @@ void ChangePasswordDialog::action(const ActionEvent &event) const std::string &eventId = event.getId(); if (eventId == "cancel") { - client->setState(STATE_CHAR_SELECT); + client->setState(State::CHAR_SELECT); } else if (eventId == "change_password") { @@ -171,7 +171,7 @@ void ChangePasswordDialog::action(const ActionEvent &event) // Set the new password mLoginData->password = oldPassword; mLoginData->newPassword = newFirstPass; - client->setState(STATE_CHANGEPASSWORD_ATTEMPT); + client->setState(State::CHANGEPASSWORD_ATTEMPT); } } } |