diff options
| -rw-r--r-- | src/plugins/debugger/qml/qmlcppengine.cpp | 6 | ||||
| -rw-r--r-- | src/plugins/debugger/qml/qmlcppengine.h | 1 |
2 files changed, 7 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; diff --git a/src/plugins/debugger/qml/qmlcppengine.h b/src/plugins/debugger/qml/qmlcppengine.h index 990cffc4b8..9c686b5498 100644 --- a/src/plugins/debugger/qml/qmlcppengine.h +++ b/src/plugins/debugger/qml/qmlcppengine.h @@ -98,6 +98,7 @@ public: protected: void detachDebugger(); void reloadDebuggingHelpers(); + void debugLastCommand(); void executeStep(); void executeStepOut(); void executeNext(); |
