From f880384018ee23efdc5cc072789e176208956a06 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 16 Feb 2014 13:56:14 +0300 Subject: Remove useless casts with KeyEvent. --- src/gui/widgets/button.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui/widgets/button.cpp') 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)->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)->getActionId(); + const int action = keyEvent.getActionId(); if (action == Input::KEY_GUI_SELECT && mKeyPressed) { -- cgit v1.2.3-60-g2f50