diff options
author | lionelc <lionelc@lionelc.(none)> | 2010-03-30 11:37:25 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-02 22:01:06 +0200 |
commit | a2cb9efc54c78c47e41196f0121ca00255a4a7ab (patch) | |
tree | b091956d703ef49ae2e6e1a36cdb2e28fd732d7f /src/urlbar | |
parent | display bookmark and history item only if string typed is longer than 3 chars (diff) | |
download | rekonq-a2cb9efc54c78c47e41196f0121ca00255a4a7ab.tar.xz |
add title for history items
Diffstat (limited to 'src/urlbar')
-rw-r--r-- | src/urlbar/urlresolver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/urlbar/urlresolver.cpp b/src/urlbar/urlresolver.cpp index 5593f566..3877a6c2 100644 --- a/src/urlbar/urlresolver.cpp +++ b/src/urlbar/urlresolver.cpp @@ -181,7 +181,7 @@ UrlSearchList UrlResolver::historyResolution() QStringList historyResults = historyCompletion->substringCompletion(_urlString); Q_FOREACH(const QString &s, historyResults) { - UrlSearchItem it(s, s, QString("view-history")); + UrlSearchItem it(s, Application::historyManager()->titleForHistoryUrl(s), QString("view-history")); list << it; } |