┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRafael Fernández López <[email protected]>2007-12-04 02:54:36 +0000
committerRafael Fernández López <[email protected]>2007-12-04 02:54:36 +0000
commit9b99cefca572a8c8e11fae4178d23706b48d586e (patch)
tree1d036473b60a099ae0c184ea47b8432cd0e5c381 /src
parent5dff77a46d3ac860c9e8f46d8dd1a0da9230a906 (diff)
Newer items go before
svn path=/trunk/KDE/kdebase/apps/; revision=744668
Diffstat (limited to 'src')
-rw-r--r--src/dolphinmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmodel.cpp b/src/dolphinmodel.cpp
index a75c0e6f6..54647d91c 100644
--- a/src/dolphinmodel.cpp
+++ b/src/dolphinmodel.cpp
@@ -261,7 +261,7 @@ QVariant DolphinModel::data(const QModelIndex &index, int role) const
modifiedTime.setTime_t(item.time(KIO::UDSEntry::UDS_MODIFICATION_TIME));
modifiedTime = modifiedTime.toLocalZone();
- retVariant = modifiedTime.date().year() * 100 + modifiedTime.date().month();
+ retVariant = -(modifiedTime.date().year() * 100 + modifiedTime.date().month());
break;
}