summaryrefslogtreecommitdiff
path: root/src/urlbar
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-08-19 21:05:08 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-08-19 21:05:08 +0200
commit61b5cf17fcd4312332a933e68d5ddcf45f281b98 (patch)
tree543ac39768f7e4370ed107188ffc40d518da41c2 /src/urlbar
parentMerge branch 'master' of gitorious.org:rekonq/mainline (diff)
parentStupid me, QtWebKit calls addHistoryEntry itself when you let it load a page.. (diff)
downloadrekonq-61b5cf17fcd4312332a933e68d5ddcf45f281b98.tar.xz
Merge branch 'HistoryReview3'
Diffstat (limited to 'src/urlbar')
-rw-r--r--src/urlbar/urlresolver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/urlbar/urlresolver.cpp b/src/urlbar/urlresolver.cpp
index f0fd257b..b762716a 100644
--- a/src/urlbar/urlresolver.cpp
+++ b/src/urlbar/urlresolver.cpp
@@ -313,11 +313,11 @@ UrlSearchList UrlResolver::webSearchesResolution()
// STEP 3 = history completion
UrlSearchList UrlResolver::historyResolution()
{
- QList<HistoryHashItem> found = Application::historyManager()->find(_typedString);
+ QList<HistoryItem> found = Application::historyManager()->find(_typedString);
qSort(found);
UrlSearchList list;
- foreach (HistoryHashItem i, found)
+ foreach (HistoryItem i, found)
{
if (_searchEnginesRegexp.indexIn(i.url) == -1) //filter all urls that are search engine results
{