diff options
| -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;  | 
