┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-05-26 18:44:36 +0000
committerPeter Penz <[email protected]>2009-05-26 18:44:36 +0000
commit9c2b206f0ab78b4809c29d54d841ff379cd8877d (patch)
tree8e3afa0825704dc86f9a1309da6212dc414eb564 /src
parentf034356d7462f23b8a2f5820af4d020c745280cf (diff)
fixed issue reported by krazy
svn path=/trunk/KDE/kdebase/apps/; revision=973284
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 bb1fd36dd..e57aa90d8 100644
--- a/src/dolphinmodel.cpp
+++ b/src/dolphinmodel.cpp
@@ -411,7 +411,7 @@ QVariant DolphinModel::sortRoleData(const QModelIndex& index) const
case KDirModel::Type:
if (item.isDir())
- retVariant = QString(); // when sorting we want folders to be placed first
+ retVariant.clear(); // when sorting we want folders to be placed first
else
retVariant = item.mimeComment();
break;