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>
This commit is contained in:
hjk
2017-02-21 14:50:19 +01:00
parent fb9cbc2edd
commit b99059bfd6
2 changed files with 6 additions and 0 deletions

View File

@@ -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)