diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-09-02 13:00:10 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-09-02 13:00:10 +0200 |
commit | 96330988d6be686ca79776518ac52d59c1848e33 (patch) | |
tree | a3d357a81fcc0bb0dea38b187e83d0a7443d7488 /src/urlbar/listitem.h | |
parent | This commit hopes to definitely fix troubles with HTML encodings. (diff) | |
download | rekonq-96330988d6be686ca79776518ac52d59c1848e33.tar.xz |
Fix wrong highlights in the search strings
PS: this fix costs a string change, sorry
BUG: 249735
Diffstat (limited to 'src/urlbar/listitem.h')
-rw-r--r-- | src/urlbar/listitem.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/urlbar/listitem.h b/src/urlbar/listitem.h index 37b22f47..be5a2569 100644 --- a/src/urlbar/listitem.h +++ b/src/urlbar/listitem.h @@ -121,6 +121,9 @@ class TextLabel : public QLabel public: explicit TextLabel(const QString &text, const QString &textToPointOut = QString(), QWidget *parent = 0); + explicit TextLabel(QWidget *parent = 0); + + void setEngineText(const QString &engine, const QString &text); }; @@ -165,8 +168,6 @@ private slots: void changeSearchEngine(KService::Ptr engine); private: - QString searchItemTitle(QString engine, QString text); - TextLabel* m_titleLabel; IconLabel* m_iconLabel; EngineBar* m_engineBar; |