diff options
author | hjk <hjk121@nokiamail.com> | 2014-10-14 21:13:22 +0200 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2014-12-02 10:40:10 +0100 |
commit | a4a7a4b25f0060411d5242d9cb8680d293e94753 (patch) | |
tree | fd22430ece4350745d25f7eccce66bcaa6e24e97 /src/plugins/debugger/qml/qmlcppengine.cpp | |
parent | d341c48246cfec8fc0242c7f55eedacd020acc8f (diff) | |
download | qt-creator-a4a7a4b25f0060411d5242d9cb8680d293e94753.tar.gz |
Debugger: Add command for simpler dumper reloading
... to facilitate shorter round trips in dumper development.
Change-Id: Ie457293fd137528d74008fc11137b47d92f3859d
Reviewed-by: hjk <hjk121@nokiamail.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 fc7dd57624..2a5836fa10 100644 --- a/src/plugins/debugger/qml/qmlcppengine.cpp +++ b/src/plugins/debugger/qml/qmlcppengine.cpp @@ -774,6 +774,12 @@ void QmlCppEngine::resetLocation() DebuggerEngine::resetLocation(); } +void QmlCppEngine::reloadDebuggingHelpers() +{ + if (m_cppEngine) + m_cppEngine->reloadDebuggingHelpers(); +} + DebuggerEngine *QmlCppEngine::cppEngine() const { return m_cppEngine; |