debugger: stream line acknowledgement of breakpoint property changes

This commit is contained in:
hjk
2010-11-18 16:07:42 +01:00
parent 1a6737cbee
commit caa9a99228
3 changed files with 18 additions and 41 deletions

View File

@@ -716,30 +716,6 @@ void BreakHandler::notifyBreakpointAdjusted(BreakpointId id,
}
void BreakHandler::ackCondition(BreakpointId id)
{
Iterator it = m_storage.find(id);
QTC_ASSERT(it != m_storage.end(), return);
it->response.condition = it->data.condition;
updateMarker(id);
}
void BreakHandler::ackIgnoreCount(BreakpointId id)
{
Iterator it = m_storage.find(id);
QTC_ASSERT(it != m_storage.end(), return);
it->response.ignoreCount = it->data.ignoreCount;
updateMarker(id);
}
void BreakHandler::ackEnabled(BreakpointId id)
{
Iterator it = m_storage.find(id);
QTC_ASSERT(it != m_storage.end(), return);
it->response.enabled = it->data.enabled;
updateMarker(id);
}
void BreakHandler::removeBreakpoint(BreakpointId id)
{
Iterator it = m_storage.find(id);