debugger: remove breakpoint notification indirection through the engine

This commit is contained in:
hjk
2010-11-16 18:20:52 +01:00
parent 4e1452fd59
commit adba4c954c
5 changed files with 22 additions and 52 deletions

View File

@@ -1280,53 +1280,16 @@ void DebuggerEngine::insertBreakpoint(BreakpointId)
QTC_ASSERT(false, /**/);
}
void DebuggerEngine::notifyBreakpointInsertOk(BreakpointId id)
{
breakHandler()->notifyBreakpointInsertOk(id);
}
void DebuggerEngine::notifyBreakpointInsertFailed(BreakpointId id)
{
breakHandler()->notifyBreakpointInsertFailed(id);
}
void DebuggerEngine::removeBreakpoint(BreakpointId)
{
QTC_ASSERT(false, /**/);
}
void DebuggerEngine::notifyBreakpointRemoveOk(BreakpointId id)
{
breakHandler()->notifyBreakpointRemoveOk(id);
}
void DebuggerEngine::notifyBreakpointRemoveFailed(BreakpointId id)
{
breakHandler()->notifyBreakpointRemoveFailed(id);
}
void DebuggerEngine::changeBreakpoint(BreakpointId)
{
QTC_ASSERT(false, /**/);
}
void DebuggerEngine::notifyBreakpointChangeOk(BreakpointId id)
{
breakHandler()->notifyBreakpointChangeOk(id);
}
void DebuggerEngine::notifyBreakpointChangeFailed(BreakpointId id)
{
breakHandler()->notifyBreakpointChangeFailed(id);
}
void DebuggerEngine::notifyBreakpointAdjusted(BreakpointId id,
const BreakpointParameters &data)
{
QTC_ASSERT(false, /* FIXME */);
breakHandler()->setBreakpointData(id, data);
}
void DebuggerEngine::selectThread(int)
{
}