diff options
| author | Emmanuel Pescosta <[email protected]> | 2012-10-28 20:59:55 +0100 |
|---|---|---|
| committer | Emmanuel Pescosta <[email protected]> | 2012-10-28 20:59:55 +0100 |
| commit | 726cd768c9dbae4f560535129ef8da5a9a72d050 (patch) | |
| tree | 8008c1a2a531be55cf566432bb01a1bded11c437 /src | |
| parent | ecdb0c3f58229bc9e87699b85838eec0aeb1ef39 (diff) | |
Fix wrong function call in KFileItemModelSortAlgorithm::sequentialSort (Bug introduced in commit 429218eaf22c1bde24ba6875895c33facfa6ae12)
Diffstat (limited to 'src')
| -rw-r--r-- | src/kitemviews/private/kfileitemmodelsortalgorithm.cpp | 4 |
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); } |
