diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2013-01-17 18:17:53 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2013-01-17 18:17:53 +0100 |
commit | 9d8f84878dfeb136b951672c2695fa6b926bf615 (patch) | |
tree | 5e78d45e0413552d7a4864490f781e77d1aedcd1 | |
parent | No more auto-hide findbar (diff) | |
download | rekonq-9d8f84878dfeb136b951672c2695fa6b926bf615.tar.xz |
Fix history ordering
BUG: 313345
-rw-r--r-- | src/history/historymanager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/history/historymanager.h b/src/history/historymanager.h index a0c3a5eb..c1e9f1cd 100644 --- a/src/history/historymanager.h +++ b/src/history/historymanager.h @@ -84,10 +84,10 @@ public: } // history is sorted in reverse + // WARNING: Please, NO MORE CHANGE this! inline bool operator <(const HistoryItem &other) const { - return visitCount > other.visitCount; -// return lastDateTimeVisit > other.lastDateTimeVisit; + return lastDateTimeVisit > other.lastDateTimeVisit; } QString title; |