Remove debug output left in the previous commit by mistake

Oops.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2013-11-07 16:32:23 +09:00
parent f262ed69cc
commit 4e9a29a0af

View file

@ -165,7 +165,6 @@ void TagWidget::keyPressEvent(QKeyEvent *e) {
}
if (e->key() == Qt::Key_Tab) { // let's pretend this is a comma instead
QKeyEvent *fakeEvent = new QKeyEvent(e->type(), Qt::Key_Comma, e->modifiers(), QString(","));
qDebug() << "sending comma instead";
GroupedLineEdit::keyPressEvent(fakeEvent);
free(fakeEvent);
} else {