]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/kitemviews/private/kfileitemmodelsortalgorithm.h
Fix includes
[dolphin.git] / src / kitemviews / private / kfileitemmodelsortalgorithm.h
index 278c69469f84c397c652481dd64e3d1da89ede19..50db9900de93022f0b874a6cf0852a34dae44726 100644 (file)
@@ -22,7 +22,7 @@
 #ifndef KFILEITEMMODELSORTALGORITHM_H
 #define KFILEITEMMODELSORTALGORITHM_H
 
-#include <QtCore>
+#include <QtConcurrent/QtConcurrent>
 
 #include <algorithm>
 
@@ -32,8 +32,6 @@
  *
  * The implementation is based on qStableSortHelper() from qalgorithms.h
  * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
- * The sorting implementations of qAlgorithms could not be used as they
- * don't support having a member-function as comparison criteria.
  */
 
 template <typename RandomAccessIterator, typename LessThan>
@@ -95,8 +93,6 @@ static void parallelMergeSort(RandomAccessIterator begin,
  *
  * The implementation is based on qMerge() from qalgorithms.h
  * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
- * The sorting implementations of qAlgorithms could not be used as they
- * don't support having a member-function as comparison criteria.
  */
 
 template <typename RandomAccessIterator, typename LessThan>