aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@qt.io>2023-03-09 10:39:46 +0100
committerDavid Schulz <david.schulz@qt.io>2023-03-10 12:44:57 +0000
commit423b485a36f678c224ed25a919afa2449bd3abee (patch)
tree83ce2194f4ac031f396fa9c2d1f1c0db94f58d5d
parentbffd6b33826fd52fe992b57cc3959155ebb8c0df (diff)
Debugger: Disable source code display in debugger log for cdb
Printing the source code line the debugger stopped at causes issue in the general output handling and was just used to conveniently reading the log file. Fixes: QTCREATORBUG-25054 Change-Id: I8db54ef6aa101b2bc7e39984bbf93bd6c9e2dc41 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
-rw-r--r--src/plugins/debugger/cdb/cdbengine.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp
index 5c5d8b1e74..450d36b8f0 100644
--- a/src/plugins/debugger/cdb/cdbengine.cpp
+++ b/src/plugins/debugger/cdb/cdbengine.cpp
@@ -244,7 +244,6 @@ void CdbEngine::adjustOperateByInstruction(bool operateByInstruction)
return;
m_lastOperateByInstruction = operateByInstruction;
runCommand({QLatin1String(m_lastOperateByInstruction ? "l-t" : "l+t"), NoFlags});
- runCommand({QLatin1String(m_lastOperateByInstruction ? "l-s" : "l+s"), NoFlags});
}
bool CdbEngine::canHandleToolTip(const DebuggerToolTipContext &context) const