┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRafael Fernández López <[email protected]>2007-12-04 01:23:05 +0000
committerRafael Fernández López <[email protected]>2007-12-04 01:23:05 +0000
commit0fc7e4af53e6f97c42fbd9df43ba80ff185600fb (patch)
tree789f192b3452e2636c91e6e5eed0729287dc7a6c /src
parent1e4257b684ee9147e26c6ebd4aace3c353585b32 (diff)
Makes sense that when sorting by permissions what we want to see first is the most permissive groups, and the most restrictive groups at the end
svn path=/trunk/KDE/kdebase/apps/; revision=744654
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 75cae0627..f541fe20c 100644
--- a/src/dolphinmodel.cpp
+++ b/src/dolphinmodel.cpp
@@ -272,7 +272,7 @@ QVariant DolphinModel::data(const QModelIndex &index, int role) const
{
QFileInfo info(item.url().pathOrUrl());
- retVariant = KDirSortFilterProxyModel::pointsForPermissions(info);
+ retVariant = -KDirSortFilterProxyModel::pointsForPermissions(info);
break;
}