From ee18be9fad42203db5a6d25565d392093defccbe Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sun, 6 Oct 2013 13:34:25 +0200 Subject: Remove debug output. --- plugingui/lineedit.cc | 1 - 1 file changed, 1 deletion(-) 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; -- cgit v1.2.3