summaryrefslogtreecommitdiff
path: root/src/gui/widgets/checkbox.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/widgets/checkbox.cpp
parent9e3f92a3914e28ce01331d7df7d03c31244a843b (diff)
downloadmv-f880384018ee23efdc5cc072789e176208956a06.tar.gz
mv-f880384018ee23efdc5cc072789e176208956a06.tar.bz2
mv-f880384018ee23efdc5cc072789e176208956a06.tar.xz
mv-f880384018ee23efdc5cc072789e176208956a06.zip
Remove useless casts with KeyEvent.
Diffstat (limited to 'src/gui/widgets/checkbox.cpp')
-rw-r--r--src/gui/widgets/checkbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/checkbox.cpp b/src/gui/widgets/checkbox.cpp
index 2514f30d3..20310c4bc 100644
--- a/src/gui/widgets/checkbox.cpp
+++ b/src/gui/widgets/checkbox.cpp
@@ -184,7 +184,7 @@ void CheckBox::mouseExited(gcn::MouseEvent& event A_UNUSED)
void CheckBox::keyPressed(KeyEvent& keyEvent)
{
- const int action = static_cast<KeyEvent*>(&keyEvent)->getActionId();
+ const int action = keyEvent.getActionId();
if (action == Input::KEY_GUI_SELECT)
{