diff options
Diffstat (limited to 'src/gui/windows/changeemaildialog.cpp')
-rw-r--r-- | src/gui/windows/changeemaildialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/changeemaildialog.cpp b/src/gui/windows/changeemaildialog.cpp index 1e069e6eb..c4ae533e2 100644 --- a/src/gui/windows/changeemaildialog.cpp +++ b/src/gui/windows/changeemaildialog.cpp @@ -114,7 +114,7 @@ void ChangeEmailDialog::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_email") { @@ -180,7 +180,7 @@ void ChangeEmailDialog::action(const ActionEvent &event) mChangeEmailButton->setEnabled(false); // Set the new email address mLoginData->email = newFirstEmail; - client->setState(STATE_CHANGEEMAIL_ATTEMPT); + client->setState(State::CHANGEEMAIL_ATTEMPT); } } } |