diff options
| author | hjk <hjk@qt.io> | 2017-02-21 14:50:19 +0100 |
|---|---|---|
| committer | hjk <hjk@qt.io> | 2017-02-21 14:28:36 +0000 |
| commit | b99059bfd6ee693617d5936857f40e49a5f7a4bd (patch) | |
| tree | bf63b5c3af1c2256f4b1c02d508c2d0698c71032 /src/plugins/debugger/qml/qmlcppengine.cpp | |
| parent | fb9cbc2edd4f1f0c3ac23b88cd970654408c4f2b (diff) | |
| download | qt-creator-b99059bfd6ee693617d5936857f40e49a5f7a4bd.tar.gz | |
Debugger: Run fresh expression evaluator also in combined debugging
doUpdateLocals() was called, but not re-implemented in the
combined case.
Task-number: QTCREATORBUG-17763
Change-Id: Id8c17ce0bda79cd61c57624aea5a05e4aad96c79
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/debugger/qml/qmlcppengine.cpp')
| -rw-r--r-- | src/plugins/debugger/qml/qmlcppengine.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/debugger/qml/qmlcppengine.cpp b/src/plugins/debugger/qml/qmlcppengine.cpp index 458061e080..479a45c075 100644 --- a/src/plugins/debugger/qml/qmlcppengine.cpp +++ b/src/plugins/debugger/qml/qmlcppengine.cpp @@ -254,6 +254,11 @@ void QmlCppEngine::attemptBreakpointSynchronization() } } +void QmlCppEngine::doUpdateLocals(const UpdateParameters &up) +{ + m_activeEngine->doUpdateLocals(up); +} + bool QmlCppEngine::acceptsBreakpoint(Breakpoint bp) const { return m_cppEngine->acceptsBreakpoint(bp) |
