diff options
Diffstat (limited to 'plugingui/combobox.cc')
-rw-r--r-- | plugingui/combobox.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugingui/combobox.cc b/plugingui/combobox.cc index cae854a..4a6d2b5 100644 --- a/plugingui/combobox.cc +++ b/plugingui/combobox.cc @@ -173,7 +173,7 @@ void ComboBox::keyEvent(KeyEvent *e) /* switch(e->keycode) { - case KeyEvent::KEY_UP: + case KeyEvent::KeyUp: { selected--; if(selected < 0) @@ -190,7 +190,7 @@ void ComboBox::keyEvent(KeyEvent *e) } } break; - case KeyEvent::KEY_DOWN: + case KeyEvent::KeyDown: { // Number of items that can be displayed at a time. int numitems = height() / (font.textHeight() + padding); @@ -210,10 +210,10 @@ void ComboBox::keyEvent(KeyEvent *e) } } break; - case KeyEvent::KEY_HOME: + case KeyEvent::KeyHome: selected = 0; break; - case KeyEvent::KEY_END: + case KeyEvent::KeyEnd: selected = items.size() - 1; break; default: |