summaryrefslogtreecommitdiff
path: root/src/gui/windows/worldselectdialog.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-02-16 13:56:14 +0300
committerAndrei Karas <akaras@inbox.ru>2014-02-16 13:56:14 +0300
commitf880384018ee23efdc5cc072789e176208956a06 (patch)
tree78726f9c32da3dbc49875392f769f082bda752e7 /src/gui/windows/worldselectdialog.cpp
parent9e3f92a3914e28ce01331d7df7d03c31244a843b (diff)
downloadplus-f880384018ee23efdc5cc072789e176208956a06.tar.gz
plus-f880384018ee23efdc5cc072789e176208956a06.tar.bz2
plus-f880384018ee23efdc5cc072789e176208956a06.tar.xz
plus-f880384018ee23efdc5cc072789e176208956a06.zip
Remove useless casts with KeyEvent.
Diffstat (limited to 'src/gui/windows/worldselectdialog.cpp')
-rw-r--r--src/gui/windows/worldselectdialog.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/windows/worldselectdialog.cpp b/src/gui/windows/worldselectdialog.cpp
index 03545bcc4..0d861b85c 100644
--- a/src/gui/windows/worldselectdialog.cpp
+++ b/src/gui/windows/worldselectdialog.cpp
@@ -156,8 +156,7 @@ void WorldSelectDialog::action(const ActionEvent &event)
void WorldSelectDialog::keyPressed(KeyEvent &keyEvent)
{
- const int actionId = static_cast<KeyEvent*>(
- &keyEvent)->getActionId();
+ const int actionId = keyEvent.getActionId();
if (actionId == static_cast<int>(Input::KEY_GUI_CANCEL))
{