┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEmmanuel Pescosta <[email protected]>2012-10-28 20:59:55 +0100
committerEmmanuel Pescosta <[email protected]>2012-10-28 20:59:55 +0100
commit726cd768c9dbae4f560535129ef8da5a9a72d050 (patch)
tree8008c1a2a531be55cf566432bb01a1bded11c437 /src
parentecdb0c3f58229bc9e87699b85838eec0aeb1ef39 (diff)
Fix wrong function call in KFileItemModelSortAlgorithm::sequentialSort (Bug introduced in commit 429218eaf22c1bde24ba6875895c33facfa6ae12)
Diffstat (limited to 'src')
-rw-r--r--src/kitemviews/private/kfileitemmodelsortalgorithm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kitemviews/private/kfileitemmodelsortalgorithm.cpp b/src/kitemviews/private/kfileitemmodelsortalgorithm.cpp
index 63eaea557..9588d19bf 100644
--- a/src/kitemviews/private/kfileitemmodelsortalgorithm.cpp
+++ b/src/kitemviews/private/kfileitemmodelsortalgorithm.cpp
@@ -43,8 +43,8 @@ void KFileItemModelSortAlgorithm::sequentialSort(KFileItemModel* model,
}
const QList<KFileItemModel::ItemData*>::iterator middle = begin + span / 2;
- sort(model, begin, middle);
- sort(model, middle, end);
+ sequentialSort(model, begin, middle);
+ sequentialSort(model, middle, end);
merge(model, begin, middle, end);
}