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/npcpostdialog.cpp | |
parent | 2ebce73d5018945bb5f5363913a4096e04bf5a0f (diff) | |
download | plus-e40411cdc287343a32a8371f2116fcc11545b466.tar.gz plus-e40411cdc287343a32a8371f2116fcc11545b466.tar.bz2 plus-e40411cdc287343a32a8371f2116fcc11545b466.tar.xz plus-e40411cdc287343a32a8371f2116fcc11545b466.zip |
Improve event.getId() speed.
Diffstat (limited to 'src/gui/npcpostdialog.cpp')
-rw-r--r-- | src/gui/npcpostdialog.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/npcpostdialog.cpp b/src/gui/npcpostdialog.cpp index 5135e56bd..bb5ab3528 100644 --- a/src/gui/npcpostdialog.cpp +++ b/src/gui/npcpostdialog.cpp @@ -92,7 +92,8 @@ NpcPostDialog::~NpcPostDialog() void NpcPostDialog::action(const gcn::ActionEvent &event) { - if (event.getId() == "send") + const std::string &eventId = event.getId(); + if (eventId == "send") { if (mSender->getText().empty() || mText->getText().empty()) { @@ -109,7 +110,7 @@ void NpcPostDialog::action(const gcn::ActionEvent &event) } setVisible(false); } - else if (event.getId() == "cancel") + else if (eventId == "cancel") { setVisible(false); } |