summaryrefslogtreecommitdiff
path: root/src/history/historymanager.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-11-25 12:23:54 +0100
committerAndrea Diamantini <adjam7@gmail.com>2012-12-10 02:48:06 +0100
commitf9781fb4b7d4c09b71188b43848095a1415a4f1e (patch)
tree8297e264124281da8a24353890e5284f218e9876 /src/history/historymanager.h
parentImprove suggestions, step 1 (diff)
downloadrekonq-f9781fb4b7d4c09b71188b43848095a1415a4f1e.tar.xz
Improve suggestions, step 2
Every change here is given to trade-off suggestions performance (p) and relevancy (r). - just check bookmarks for relevance if no history entries found (p) - remove bookmarks item duplicates from history (r) - just do it is user typed more than 1 char (p) - order history entries just if user typed more than 1 char (p) - (reverse) order by visit count (most visited first) (r)
Diffstat (limited to 'src/history/historymanager.h')
-rw-r--r--src/history/historymanager.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/history/historymanager.h b/src/history/historymanager.h
index 96de8ab8..a0c3a5eb 100644
--- a/src/history/historymanager.h
+++ b/src/history/historymanager.h
@@ -86,7 +86,8 @@ public:
// history is sorted in reverse
inline bool operator <(const HistoryItem &other) const
{
- return lastDateTimeVisit > other.lastDateTimeVisit;
+ return visitCount > other.visitCount;
+// return lastDateTimeVisit > other.lastDateTimeVisit;
}
QString title;