From: Emmanuel Pescosta Date: Sun, 28 Oct 2012 19:59:55 +0000 (+0100) Subject: Fix wrong function call in KFileItemModelSortAlgorithm::sequentialSort (Bug introduce... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/726cd768c9dbae4f560535129ef8da5a9a72d050 Fix wrong function call in KFileItemModelSortAlgorithm::sequentialSort (Bug introduced in commit 429218eaf22c1bde24ba6875895c33facfa6ae12) --- 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::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); }