diff options
Diffstat (limited to 'src/plugins/debugger/gdb/gdbengine.cpp')
-rw-r--r-- | src/plugins/debugger/gdb/gdbengine.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index d119c253c1..1f7ec3d928 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -5004,6 +5004,10 @@ void GdbEngine::updateLocalsPython(const UpdateParameters ¶ms) if (!m_resultVarName.isEmpty()) resultVar = "resultvarname:" + m_resultVarName + ' '; + m_lastDebuggableCommand = + "bb options:pe," + options + " vars:" + params.varList + ' ' + + expanded + " watchers:" + watchers.toHex() + cutOff; + postCommand("bb options:" + options + " vars:" + params.varList + ' ' + resultVar + expanded + " watchers:" + watchers.toHex() + cutOff, Discardable, CB(handleStackFramePython), QVariant(params.tryPartial)); |