diff options
author | hjk <hjk121@nokiamail.com> | 2014-01-07 16:15:08 +0100 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2014-01-07 16:18:34 +0100 |
commit | bc0d196201edd00a6519e8a22d0282c8cc29d075 (patch) | |
tree | ab518363f4a26b42c175153d1cf878db3e4b8c11 /src | |
parent | aeab5d9ab92d084a10102f1d20a54a6cd15edc5c (diff) | |
download | qt-creator-bc0d196201edd00a6519e8a22d0282c8cc29d075.tar.gz |
Debugger: Fix 'debugLastCommand'
Wasn't properly merged in the non-Python removal
Change-Id: I5218e37d2e4d615c7bdd60fa63e5d3f6bbc95229
Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src')
-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)); |