diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-12-31 10:29:27 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-01-03 18:49:01 +0100 |
commit | 8528c9b7e7ec20af225497442cfc58631ba91e30 (patch) | |
tree | ca26eeb5a6f2142294bc6f08c56b19fbd86f16f5 /src/urlbar/completionwidget.cpp | |
parent | Invert PreviewListItem order: icon, text, preview. (diff) | |
download | rekonq-8528c9b7e7ec20af225497442cfc58631ba91e30.tar.xz |
cut out open search suggestions
Diffstat (limited to 'src/urlbar/completionwidget.cpp')
-rw-r--r-- | src/urlbar/completionwidget.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/urlbar/completionwidget.cpp b/src/urlbar/completionwidget.cpp index 5bb55c92..b349041d 100644 --- a/src/urlbar/completionwidget.cpp +++ b/src/urlbar/completionwidget.cpp @@ -384,7 +384,8 @@ void CompletionWidget::suggestUrls(const QString &text) } UrlResolver *res = new UrlResolver(text); - connect(res, SIGNAL(suggestionsReady(const UrlSearchList &, const QString &)), this, SLOT(updateSearchList(const UrlSearchList &, const QString &))); + connect(res, SIGNAL(suggestionsReady(const UrlSearchList &, const QString &)), + this, SLOT(updateSearchList(const UrlSearchList &, const QString &))); _resList = res->orderedSearchItems(); // NOTE: It's important to call this AFTER orderedSearchItems() to let everything work |