diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-10-06 13:34:25 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-10-06 13:34:25 +0200 |
commit | ee18be9fad42203db5a6d25565d392093defccbe (patch) | |
tree | f9c064ce548741e4166dc6cd862442756bf11c0c /plugingui/lineedit.cc | |
parent | 10df5bcd49fdfda1d65a616abd66dae9cc9a2409 (diff) |
Remove debug output.
Diffstat (limited to 'plugingui/lineedit.cc')
-rw-r--r-- | plugingui/lineedit.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugingui/lineedit.cc b/plugingui/lineedit.cc index 16c6dda..d6e717a 100644 --- a/plugingui/lineedit.cc +++ b/plugingui/lineedit.cc @@ -123,7 +123,6 @@ void GUI::LineEdit::keyEvent(GUI::KeyEvent *e) } else if(e->keycode == GUI::KeyEvent::KEY_DELETE) { if(pos < _text.length()) { - printf("AAA: %d\n", pos); std::string t = _text.substr(0, pos); t += _text.substr(pos + 1, std::string::npos); _text = t; |