diff options
author | hjk <hjk121@nokiamail.com> | 2014-12-01 15:25:06 +0100 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2014-12-02 10:41:09 +0100 |
commit | 042ef1aec0e04d2568c30ab19c1f89720ed8da3e (patch) | |
tree | 5fa8ff166ec36b96bf7f7681012a753c5290109a /src/plugins/debugger/qml/qmlcppengine.cpp | |
parent | a4a7a4b25f0060411d5242d9cb8680d293e94753 (diff) | |
download | qt-creator-042ef1aec0e04d2568c30ab19c1f89720ed8da3e.tar.gz |
Debugger: Make "debug last debugger command" available for cpp+qml
Change-Id: I0fe8025efc519def5cdd837a18928474ce7229cd
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
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; |