aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/qml/qmlengine.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-07-04 19:00:20 +0200
committerhjk <hjk@qt.io>2019-07-05 07:49:48 +0000
commitc77cef57063f5ae712777b792c1a1ed046b055b3 (patch)
tree92e117002ba9e2a0bf89ff494fca51d4428525a3 /src/plugins/debugger/qml/qmlengine.cpp
parent6e4d0a70e9cd28639aecb69f4bb025af3633bec4 (diff)
Avoid more deprecation warnings
Change-Id: Icc7bb7a4ccf7fc9f89f6f668c194ccd440e5231c Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/debugger/qml/qmlengine.cpp')
-rw-r--r--src/plugins/debugger/qml/qmlengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp
index 255052936e..a04c110fce 100644
--- a/src/plugins/debugger/qml/qmlengine.cpp
+++ b/src/plugins/debugger/qml/qmlengine.cpp
@@ -320,7 +320,7 @@ QmlEngine::~QmlEngine()
if (textEditPtr)
documentsToClose << textEditPtr.data()->document();
}
- EditorManager::closeDocuments(documentsToClose.toList());
+ EditorManager::closeDocuments(Utils::toList(documentsToClose));
delete d;
}