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/inttextfield.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/inttextfield.cpp')
-rw-r--r-- | src/gui/widgets/inttextfield.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/inttextfield.cpp b/src/gui/widgets/inttextfield.cpp index 8e3713522..e693526f0 100644 --- a/src/gui/widgets/inttextfield.cpp +++ b/src/gui/widgets/inttextfield.cpp @@ -52,7 +52,7 @@ IntTextField::IntTextField(const Widget2 *const widget, const int def, void IntTextField::keyPressed(KeyEvent &event) { - const int action = static_cast<KeyEvent*>(&event)->getActionId(); + const int action = event.getActionId(); if (action == Input::KEY_GUI_DELETE || action == Input::KEY_GUI_BACKSPACE) { @@ -68,7 +68,7 @@ void IntTextField::keyPressed(KeyEvent &event) if (val != Key::TEXTINPUT) return; - const std::string str = static_cast<KeyEvent*>(&event)->getText(); + const std::string str = event->getText(); if (str.empty()) return; const size_t sz = str.size(); |