summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2013-10-06 13:34:25 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2013-10-06 13:34:25 +0200
commitee18be9fad42203db5a6d25565d392093defccbe (patch)
treef9c064ce548741e4166dc6cd862442756bf11c0c
parent10df5bcd49fdfda1d65a616abd66dae9cc9a2409 (diff)
Remove debug output.
-rw-r--r--plugingui/lineedit.cc1
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;