diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-11-07 16:32:23 +0900 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-11-07 16:32:23 +0900 |
commit | 4e9a29a0af2281a3a7bc484fbe8f44bc1e2a409c (patch) | |
tree | 84ddc67ccf75fad113597d94447870c0514033a3 /qt-ui/tagwidget.cpp | |
parent | f262ed69ccebce77808d0904269da3a3d12c2b4d (diff) | |
download | subsurface-4e9a29a0af2281a3a7bc484fbe8f44bc1e2a409c.tar.gz |
Remove debug output left in the previous commit by mistake
Oops.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/tagwidget.cpp')
-rw-r--r-- | qt-ui/tagwidget.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/qt-ui/tagwidget.cpp b/qt-ui/tagwidget.cpp index b0912addb..457f66c74 100644 --- a/qt-ui/tagwidget.cpp +++ b/qt-ui/tagwidget.cpp @@ -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 { |