diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-04-17 11:31:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-04-17 11:31:47 +0300 |
commit | 693879649420c0997bfb29bea7f5752f6d9ac526 (patch) | |
tree | 01d6c56532d561385edbfe2ad0235df6c5a58c5f /src/guichan/widgets/radiobutton.cpp | |
parent | 8df35828d69f3debd89557a74c26359a8b249f87 (diff) | |
download | plus-693879649420c0997bfb29bea7f5752f6d9ac526.tar.gz plus-693879649420c0997bfb29bea7f5752f6d9ac526.tar.bz2 plus-693879649420c0997bfb29bea7f5752f6d9ac526.tar.xz plus-693879649420c0997bfb29bea7f5752f6d9ac526.zip |
Move keyboard handling from guichan to own classes.
Diffstat (limited to 'src/guichan/widgets/radiobutton.cpp')
-rw-r--r-- | src/guichan/widgets/radiobutton.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/guichan/widgets/radiobutton.cpp b/src/guichan/widgets/radiobutton.cpp index 7d0391cbe..7811ea558 100644 --- a/src/guichan/widgets/radiobutton.cpp +++ b/src/guichan/widgets/radiobutton.cpp @@ -128,17 +128,8 @@ namespace gcn mCaption = caption; } - void RadioButton::keyPressed(KeyEvent& keyEvent) + void RadioButton::keyPressed(KeyEvent& keyEvent A_UNUSED) { - Key key = keyEvent.getKey(); - - if (key.getValue() == Key::ENTER || - key.getValue() == Key::SPACE) - { - setSelected(true); - distributeActionEvent(); - keyEvent.consume(); - } } void RadioButton::mouseClicked(MouseEvent& mouseEvent) |