diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-15 23:59:35 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-15 23:59:35 +0200 |
commit | cc6d332afeb2ed940bcd3ca6bc307916b3ddf953 (patch) | |
tree | df470b3f9d62a4034b27cf37df93e3cfe38f60b3 /src/urlbar/completionwidget.h | |
parent | Merge commit 'refs/merge-requests/124' of git://gitorious.org/rekonq/mainline... (diff) | |
parent | introduce search listitem (diff) | |
download | rekonq-cc6d332afeb2ed940bcd3ca6bc307916b3ddf953.tar.xz |
Merge commit 'refs/merge-requests/77' of git://gitorious.org/rekonq/mainline into m77
Diffstat (limited to 'src/urlbar/completionwidget.h')
-rw-r--r-- | src/urlbar/completionwidget.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/urlbar/completionwidget.h b/src/urlbar/completionwidget.h index 57a8bed0..25b6f5eb 100644 --- a/src/urlbar/completionwidget.h +++ b/src/urlbar/completionwidget.h @@ -47,7 +47,7 @@ class CompletionWidget : public QFrame public: CompletionWidget(QWidget *parent); - void insertSearchList(const UrlSearchList &list); + void insertSearchList(const UrlSearchList &list, const QString& text); void popup(); void clear(); @@ -59,6 +59,7 @@ private slots: signals: void chosenUrl(const KUrl &, Rekonq::OpenType); + void nextItemSubChoice(); void loadTypedUrl(); private: @@ -70,6 +71,7 @@ private: UrlSearchList _list; int _currentIndex; + QString *_searchEngine; }; #endif // COMPLETION_WIDGET_H |