forked from qt-creator/qt-creator
debugger: start 'runcontrol-ification' of the debugger plugin.
This replaces most uses of DebuggerStartParameters by DebuggerRunControl which is a simple RunControl with a DebuggerStartParameters member. Plan is to move all global state to the run controls, and possibly introduce specialized ones for core debugging etc.
This commit is contained in:
@@ -386,8 +386,9 @@ void CdbDebugEngine::startupChecks()
|
||||
syncDebuggerPaths();
|
||||
}
|
||||
|
||||
void CdbDebugEngine::startDebugger(const QSharedPointer<DebuggerStartParameters> &sp)
|
||||
void CdbDebugEngine::startDebugger(const DebuggerRunControl *runControl)
|
||||
{
|
||||
DebuggerStartParameters *sp = &runControl->sp();
|
||||
if (debugCDBExecution)
|
||||
qDebug() << "startDebugger" << *sp;
|
||||
CdbCore::BreakPoint::clearNormalizeFileNameCache();
|
||||
|
||||
Reference in New Issue
Block a user