diff options
author | megabigbug <megabigbug@arrakis.(none)> | 2010-08-19 21:34:46 +0200 |
---|---|---|
committer | megabigbug <megabigbug@arrakis.(none)> | 2010-08-19 21:34:46 +0200 |
commit | 802d8d468189308394e06cf25fe9c74699aa96ec (patch) | |
tree | 04c58d6e41e5467883712a3f0e77d7122bd2c63d /src/urlbar/listitem.h | |
parent | working opensearch suggestions (diff) | |
download | rekonq-802d8d468189308394e06cf25fe9c74699aa96ec.tar.xz |
fix suggestion item: use the correct search engine
Diffstat (limited to 'src/urlbar/listitem.h')
-rw-r--r-- | src/urlbar/listitem.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/urlbar/listitem.h b/src/urlbar/listitem.h index 0e1a7ad5..06a02b80 100644 --- a/src/urlbar/listitem.h +++ b/src/urlbar/listitem.h @@ -61,7 +61,8 @@ public: void deactivate(); KUrl url(); - + virtual QString text(); + public slots: virtual void nextItemSubChoice(); @@ -153,6 +154,7 @@ class SearchListItem : public ListItem public: explicit SearchListItem(const UrlSearchItem &item, const QString &text, QWidget *parent = 0); + QString text(); public slots: virtual void nextItemSubChoice(); @@ -180,6 +182,10 @@ class SuggestionListItem : public ListItem public: SuggestionListItem(const UrlSearchItem &item, const QString &text, QWidget *parent = 0); + QString text(); + +private: + QString m_text; }; |