diff options
| author | Peter Penz <[email protected]> | 2009-05-26 18:44:36 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2009-05-26 18:44:36 +0000 |
| commit | 9c2b206f0ab78b4809c29d54d841ff379cd8877d (patch) | |
| tree | 8e3afa0825704dc86f9a1309da6212dc414eb564 | |
| parent | f034356d7462f23b8a2f5820af4d020c745280cf (diff) | |
fixed issue reported by krazy
svn path=/trunk/KDE/kdebase/apps/; revision=973284
| -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 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; |
