diff options
author | Andreas Habel <mail@exceptionfault.de> | 2009-10-08 00:38:53 +0200 |
---|---|---|
committer | Andreas Habel <mail@exceptionfault.de> | 2009-10-08 00:38:53 +0200 |
commit | 91119464a20e29d7b125ee697e91bfce2d100d19 (patch) | |
tree | fd8fd3b7438370cd9b2c4516ed818914ca853cd1 /src/gui/charselectdialog.cpp | |
parent | 81934dc041da371fc94c19de9936714bc065528a (diff) | |
parent | 11b3ff85e9dc8f39ddcfdff511c6340b899ba414 (diff) | |
download | mana-client-91119464a20e29d7b125ee697e91bfce2d100d19.tar.gz mana-client-91119464a20e29d7b125ee697e91bfce2d100d19.tar.bz2 mana-client-91119464a20e29d7b125ee697e91bfce2d100d19.tar.xz mana-client-91119464a20e29d7b125ee697e91bfce2d100d19.zip |
Merge branch 'master' of git@gitorious.org:tmw/mainline
Diffstat (limited to 'src/gui/charselectdialog.cpp')
-rw-r--r-- | src/gui/charselectdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/charselectdialog.cpp b/src/gui/charselectdialog.cpp index 43748765..2bb9cff3 100644 --- a/src/gui/charselectdialog.cpp +++ b/src/gui/charselectdialog.cpp @@ -210,15 +210,15 @@ void CharSelectDialog::action(const gcn::ActionEvent &event) } else if (event.getId() == "change_password") { - new ChangePasswordDialog(this, mLoginData); + state = STATE_CHANGEPASSWORD; } else if (event.getId() == "change_email") { - new ChangeEmailDialog(this, mLoginData); + state = STATE_CHANGEEMAIL; } else if (event.getId() == "unregister") { - new UnRegisterDialog(this, mLoginData); + state = STATE_UNREGISTER; } } |