diff options
| author | Rafael Fernández López <[email protected]> | 2008-02-23 14:21:57 +0000 |
|---|---|---|
| committer | Rafael Fernández López <[email protected]> | 2008-02-23 14:21:57 +0000 |
| commit | 90625552ea0d0ca6e4188972f208068d69e02189 (patch) | |
| tree | 53383fa05b6b5d6a9a3886e40452e265ec65f53e | |
| parent | 3db4843c35b7380cdb2072e9df3ac5811db87e48 (diff) | |
Much better with the last report details :)
CCBUG: 158266
svn path=/trunk/KDE/kdebase/apps/; revision=778366
| -rw-r--r-- | src/dolphinmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmodel.cpp b/src/dolphinmodel.cpp index b0e5ef5c4..baea204b3 100644 --- a/src/dolphinmodel.cpp +++ b/src/dolphinmodel.cpp @@ -268,7 +268,7 @@ QVariant DolphinModel::data(const QModelIndex &index, int role) const KDateTime modifiedTime = item.time(KFileItem::ModificationTime); modifiedTime = modifiedTime.toLocalZone(); - retVariant = -(modifiedTime.date().year() * 100 + modifiedTime.date().month()); + retVariant = modifiedTime.date().year() * 100 + modifiedTime.date().month(); break; } |
