Debugger: fix initial value of operate by instruction for cdb

Change-Id: Ifad9fdd96175a304130b8f41f53c235c0260220d
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2018-08-20 15:15:02 +02:00
parent 6203fb5db1
commit 0c1191886a

View File

@@ -226,7 +226,7 @@ void CdbEngine::init()
m_stopMode = NoStopRequested; m_stopMode = NoStopRequested;
m_nextCommandToken = 0; m_nextCommandToken = 0;
m_currentBuiltinResponseToken = -1; m_currentBuiltinResponseToken = -1;
m_operateByInstruction = action(OperateByInstruction)->isChecked(); m_operateByInstruction = true; // Default CDB setting.
m_hasDebuggee = false; m_hasDebuggee = false;
m_sourceStepInto = false; m_sourceStepInto = false;
m_watchPointX = m_watchPointY = 0; m_watchPointX = m_watchPointY = 0;