From 1519d6ab5b9898e1617989719fb31ec5a95c1200 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Sun, 10 Apr 2011 00:52:06 +0200 Subject: Fix History ordering (check about:history page before and after this patch) and remove the "provileged" item in the urlbar suggestions as it was NOT really working. Reduce min suggestion list from 3 to 2 to enable more history suggestions. . --- src/history/historymanager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/history') diff --git a/src/history/historymanager.h b/src/history/historymanager.h index eb8d78d7..8650bd14 100644 --- a/src/history/historymanager.h +++ b/src/history/historymanager.h @@ -84,7 +84,7 @@ public: // history is sorted in reverse inline bool operator <(const HistoryItem &other) const { - return relevance() > other.relevance(); + return dateTime > other.dateTime; } QString title; -- cgit v1.2.1