diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-02-13 22:58:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-02-14 01:42:53 +0300 |
commit | e40411cdc287343a32a8371f2116fcc11545b466 (patch) | |
tree | 4655f02211f1b08b8ead94175fd419c6e766f9c8 /src/gui/unregisterdialog.cpp | |
parent | 2ebce73d5018945bb5f5363913a4096e04bf5a0f (diff) | |
download | ManaVerse-e40411cdc287343a32a8371f2116fcc11545b466.tar.gz ManaVerse-e40411cdc287343a32a8371f2116fcc11545b466.tar.bz2 ManaVerse-e40411cdc287343a32a8371f2116fcc11545b466.tar.xz ManaVerse-e40411cdc287343a32a8371f2116fcc11545b466.zip |
Improve event.getId() speed.
Diffstat (limited to 'src/gui/unregisterdialog.cpp')
-rw-r--r-- | src/gui/unregisterdialog.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/unregisterdialog.cpp b/src/gui/unregisterdialog.cpp index 86243363f..49db5175c 100644 --- a/src/gui/unregisterdialog.cpp +++ b/src/gui/unregisterdialog.cpp @@ -95,11 +95,12 @@ UnRegisterDialog::~UnRegisterDialog() void UnRegisterDialog::action(const gcn::ActionEvent &event) { - if (event.getId() == "cancel") + const std::string &eventId = event.getId(); + if (eventId == "cancel") { Client::setState(STATE_CHAR_SELECT); } - else if (event.getId() == "unregister") + else if (eventId == "unregister") { const std::string username = mLoginData->username.c_str(); const std::string password = mPasswordField->getText(); |