summaryrefslogtreecommitdiff
path: root/src/scripttools/debugging/qscriptdebuggercommandexecutor.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2013-09-26 10:29:45 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-26 15:35:52 +0200
commitabe229291b292e1e5d0d07b23c130991b347ae78 (patch)
treeaec73ea8efed8312e793c65b204cdc223fcca8d3 /src/scripttools/debugging/qscriptdebuggercommandexecutor.cpp
parenteff4a0f3fca2e22d4be888cdd7953e1c2ab8c918 (diff)
downloadqtscript-abe229291b292e1e5d0d07b23c130991b347ae78.tar.gz
Remove QtAlgorithms usage from QtScript.
QtAlgorithms is getting deprecated, see http://www.mail-archive.com/development@qt-project.org/msg01603.html Change-Id: If4dc8f69fd75315390a4850be732715064f5fdd8 Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@digia.com> Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
Diffstat (limited to 'src/scripttools/debugging/qscriptdebuggercommandexecutor.cpp')
-rw-r--r--src/scripttools/debugging/qscriptdebuggercommandexecutor.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/scripttools/debugging/qscriptdebuggercommandexecutor.cpp b/src/scripttools/debugging/qscriptdebuggercommandexecutor.cpp
index c8a048a..e6866b4 100644
--- a/src/scripttools/debugging/qscriptdebuggercommandexecutor.cpp
+++ b/src/scripttools/debugging/qscriptdebuggercommandexecutor.cpp
@@ -56,6 +56,8 @@
#include <QtScript/qscriptvalueiterator.h>
#include <QtCore/qdebug.h>
+#include <algorithm>
+
Q_DECLARE_METATYPE(QScriptScriptsDelta)
Q_DECLARE_METATYPE(QScriptDebuggerValueProperty)
Q_DECLARE_METATYPE(QScriptDebuggerValuePropertyList)
@@ -399,7 +401,7 @@ QScriptDebuggerResponse QScriptDebuggerCommandExecutor::execute(
}
}
QStringList matchesList = matches.toList();
- qStableSort(matchesList);
+ std::stable_sort(matchesList.begin(), matchesList.end());
response.setResult(matchesList);
} break;