diff options
Diffstat (limited to 'src/plugins/debugger/qml/qmlcppengine.cpp')
-rw-r--r-- | src/plugins/debugger/qml/qmlcppengine.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/debugger/qml/qmlcppengine.cpp b/src/plugins/debugger/qml/qmlcppengine.cpp index 2a5836fa10..2d00fba8bc 100644 --- a/src/plugins/debugger/qml/qmlcppengine.cpp +++ b/src/plugins/debugger/qml/qmlcppengine.cpp @@ -780,6 +780,12 @@ void QmlCppEngine::reloadDebuggingHelpers() m_cppEngine->reloadDebuggingHelpers(); } +void QmlCppEngine::debugLastCommand() +{ + if (m_cppEngine) + m_cppEngine->debugLastCommand(); +} + DebuggerEngine *QmlCppEngine::cppEngine() const { return m_cppEngine; |