debugger: re-enable setting breakpoints while inferior is running

This commit is contained in:
hjk
2010-07-20 12:14:59 +02:00
parent 40bb503219
commit af57dc4170
9 changed files with 44 additions and 32 deletions

View File

@@ -432,7 +432,7 @@ void DebuggerEngine::handleCommand(int role, const QVariant &value)
break;
case RequestExecInterruptRole:
d->doInterruptInferior();
requestInterruptInferior();
break;
case RequestExecResetRole:
@@ -1412,6 +1412,11 @@ void DebuggerEngine::quitDebugger()
shutdownInferior();
}
void DebuggerEngine::requestInterruptInferior()
{
d->doInterruptInferior();
}
} // namespace Internal
} // namespace Debugger