forked from qt-creator/qt-creator
Continued CDB breakpoint handling.
Enable temporarily stopping for setting breakpoints. Fix terminating the debuggee in exitDebugger().
This commit is contained in:
@@ -243,6 +243,14 @@ int BreakHandler::rowCount(const QModelIndex &parent) const
|
||||
return parent.isValid() ? 0 : size();
|
||||
}
|
||||
|
||||
bool BreakHandler::hasPendingBreakpoints() const
|
||||
{
|
||||
for (int i = size() - 1; i >= 0; i--)
|
||||
if (at(i)->pending)
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
void BreakHandler::removeAt(int index)
|
||||
{
|
||||
BreakpointData *data = at(index);
|
||||
|
||||
Reference in New Issue
Block a user