diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-16 13:56:14 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-16 13:56:14 +0300 |
commit | f880384018ee23efdc5cc072789e176208956a06 (patch) | |
tree | 78726f9c32da3dbc49875392f769f082bda752e7 /src/gui/widgets/button.cpp | |
parent | 9e3f92a3914e28ce01331d7df7d03c31244a843b (diff) | |
download | plus-f880384018ee23efdc5cc072789e176208956a06.tar.gz plus-f880384018ee23efdc5cc072789e176208956a06.tar.bz2 plus-f880384018ee23efdc5cc072789e176208956a06.tar.xz plus-f880384018ee23efdc5cc072789e176208956a06.zip |
Remove useless casts with KeyEvent.
Diffstat (limited to 'src/gui/widgets/button.cpp')
-rw-r--r-- | src/gui/widgets/button.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/button.cpp b/src/gui/widgets/button.cpp index 10088d5f4..fecf551b2 100644 --- a/src/gui/widgets/button.cpp +++ b/src/gui/widgets/button.cpp @@ -592,7 +592,7 @@ void Button::setCaption(const std::string& caption) void Button::keyPressed(KeyEvent& keyEvent) { - const int action = static_cast<KeyEvent*>(&keyEvent)->getActionId(); + const int action = keyEvent.getActionId(); if (action == Input::KEY_GUI_SELECT) { @@ -603,7 +603,7 @@ void Button::keyPressed(KeyEvent& keyEvent) void Button::keyReleased(KeyEvent& keyEvent) { - const int action = static_cast<KeyEvent*>(&keyEvent)->getActionId(); + const int action = keyEvent.getActionId(); if (action == Input::KEY_GUI_SELECT && mKeyPressed) { |