diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-08-28 20:59:08 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-08-28 20:59:08 +0200 |
commit | 3f137d56176193c2bec7c876eb935612df91475c (patch) | |
tree | 69b1fe311e2e5781768f8a25db39a3e7d1a80a9b /src/urlbar/urlresolver.h | |
parent | Increase xmlgui version number (just to be sure..) (diff) | |
download | rekonq-3f137d56176193c2bec7c876eb935612df91475c.tar.xz |
Restore urlbar responsiveness
Suggestions are now added when ready
Diffstat (limited to 'src/urlbar/urlresolver.h')
-rw-r--r-- | src/urlbar/urlresolver.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/urlbar/urlresolver.h b/src/urlbar/urlresolver.h index f72d6731..4e85e917 100644 --- a/src/urlbar/urlresolver.h +++ b/src/urlbar/urlresolver.h @@ -119,8 +119,6 @@ private: void computeBookmarks(); void computeSuggestions(); - int _computedListsCount; - UrlSearchItem privilegedItem(UrlSearchList* list); UrlSearchList orderLists(); @@ -128,7 +126,10 @@ private: static QRegExp _searchEnginesRegexp; private slots: - void suggestionsReceived(const QStringList &suggestion); + void suggestionsReceived(const QString &text, const QStringList &suggestions); + +Q_SIGNALS: + void suggestionsReady(const UrlSearchList &, const QString &); }; |