diff options
Diffstat (limited to 'src/urlbar/completionwidget.cpp')
-rw-r--r-- | src/urlbar/completionwidget.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/urlbar/completionwidget.cpp b/src/urlbar/completionwidget.cpp index 1f697b19..00a04bda 100644 --- a/src/urlbar/completionwidget.cpp +++ b/src/urlbar/completionwidget.cpp @@ -299,9 +299,6 @@ bool CompletionWidget::eventFilter(QObject *obj, QEvent *ev) child = findChild<ListItem *>(QString::number(_currentIndex)); if(child && _currentIndex != 0) //the completionwidget is visible and the user had press down { - kDebug() << "USING LISTITEM URL: " << child->url(); - kDebug() << "USING LISTITEM TITLE: " << child->text(); - //we can use the url of the listitem emit chosenUrl(child->url(), Rekonq::CurrentTab); } @@ -311,7 +308,6 @@ bool CompletionWidget::eventFilter(QObject *obj, QEvent *ev) UrlSearchList list = res.orderedSearchItems(); if(list.isEmpty()) { - kDebug() << "Url Search List EMPTY!!!"; emit chosenUrl(KUrl(_typedString), Rekonq::CurrentTab); } else |