From dcf19a10c6b61101ae52285b3042d45523463e32 Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Thu, 5 Jan 2017 15:23:44 +0100 Subject: [PATCH] Debugger: Shut down QML engine on QmlCppEngine::shutdownEngine() Otherwise the console's script evaluator is not removed. Change-Id: I0092e8571d6d44b208167a7bf6bc2a929055e09c Reviewed-by: hjk --- src/plugins/debugger/qml/qmlcppengine.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/debugger/qml/qmlcppengine.cpp b/src/plugins/debugger/qml/qmlcppengine.cpp index a532abe7dde..458061e0809 100644 --- a/src/plugins/debugger/qml/qmlcppengine.cpp +++ b/src/plugins/debugger/qml/qmlcppengine.cpp @@ -449,6 +449,7 @@ void QmlCppEngine::shutdownInferior() void QmlCppEngine::shutdownEngine() { EDEBUG("\nMASTER SHUTDOWN ENGINE"); + m_qmlEngine->shutdownSlaveEngine(); m_cppEngine->shutdownSlaveEngine(); }