From 4eea61c47fe98dce403d8b22fa3a0e3fb43509e1 Mon Sep 17 00:00:00 2001 From: hjk <qtc-committer@nokia.com> Date: Fri, 13 Nov 2009 10:55:50 +0100 Subject: [PATCH] debugger: fix breakpoihnt deletion by using the context menu action --- src/plugins/debugger/breakwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/breakwindow.cpp b/src/plugins/debugger/breakwindow.cpp index b0edd855459..1e499f9a392 100644 --- a/src/plugins/debugger/breakwindow.cpp +++ b/src/plugins/debugger/breakwindow.cpp @@ -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) -- GitLab