diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-10-12 13:22:12 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-10-12 13:22:12 +0200 |
commit | 151caf049c95368347a6243e85e04a50c87d0e5e (patch) | |
tree | b2e5481c84a13dc593ddc5caef40aac1df208a36 /plugingui/lineedit.cc | |
parent | 4dcddacbe63574c27296d5266554d8d6667367f1 (diff) |
Fix missing 'direction' type changes (int to enum).
Diffstat (limited to 'plugingui/lineedit.cc')
-rw-r--r-- | plugingui/lineedit.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugingui/lineedit.cc b/plugingui/lineedit.cc index 5e1eb9b..17d62bb 100644 --- a/plugingui/lineedit.cc +++ b/plugingui/lineedit.cc @@ -91,7 +91,7 @@ void GUI::LineEdit::buttonEvent(ButtonEvent *e) if(readOnly()) return; - if(e->direction == 1) { + if(e->direction == ButtonEvent::Down) { for(int i = 0; i < (int)_visibletext.length(); i++) { if(e->x < (int)(font.textWidth(_visibletext.substr(0, i)) + BORDER)) { pos = i + offsetpos; @@ -108,7 +108,7 @@ void GUI::LineEdit::keyEvent(GUI::KeyEvent *e) bool change = false; - if(e->direction == -1) { + if(e->direction == KeyEvent::Up) { if(e->keycode == GUI::KeyEvent::KEY_LEFT) { if(pos) pos--; |