debugger: -break-list should be discardable if we do in in each step

This commit is contained in:
hjk
2010-01-07 16:24:49 +01:00
parent 67027dddb6
commit c283c05d31

View File

@@ -1969,7 +1969,8 @@ void GdbEngine::sendInsertBreakpoint(int index)
void GdbEngine::reloadBreakListInternal()
{
m_breakListUpdating = true;
postCommand("-break-list", NeedsStop, CB(handleBreakList));
// "Discardable" as long as we do in each step
postCommand("-break-list", NeedsStop | Discardable, CB(handleBreakList));
}
void GdbEngine::handleBreakList(const GdbResponse &response)