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/textfield.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui/widgets/textfield.cpp') diff --git a/src/gui/widgets/textfield.cpp b/src/gui/widgets/textfield.cpp index 81a69e472..aa554b30f 100644 --- a/src/gui/widgets/textfield.cpp +++ b/src/gui/widgets/textfield.cpp @@ -204,7 +204,7 @@ void TextField::keyPressed(KeyEvent &keyEvent) #ifdef USE_SDL2 if (val == Key::TEXTINPUT) { - std::string str = static_cast(&keyEvent)->getText(); + std::string str = keyEvent->getText(); mText.insert(mCaretPosition, str); mCaretPosition += str.size(); keyEvent.consume(); @@ -293,7 +293,7 @@ void TextField::keyPressed(KeyEvent &keyEvent) } else { - const int action = static_cast(&keyEvent)->getActionId(); + const int action = keyEvent.getActionId(); if (!inputManager.isActionActive(static_cast( Input::KEY_GUI_CTRL))) { -- cgit v1.2.3-70-g09d2