debugger: fix breakpoihnt deletion by using the context menu action

This commit is contained in:
hjk
2009-11-13 10:55:50 +01:00
parent 805c728a29
commit 4eea61c47f

View File

@@ -280,7 +280,7 @@ void BreakWindow::deleteBreakpoints(QList<int> list)
const int firstRow = list.front();
qSort(list.begin(), list.end());
for (int i = list.size(); --i >= 0; )
emit breakpointDeleted(i);
emit breakpointDeleted(list.at(i));
const int row = qMax(firstRow, model()->rowCount() - list.size() - 1);
if (row >= 0)