| 900 | } |
| 901 | |
| 902 | void MainWindow::breakRemoveSelected() { |
| 903 | for (int row = 0; row < m_breakpoints->rowCount(); row++){ |
| 904 | if (sender() == m_breakpoints->cellWidget(row, BREAK_REMOVE_COL)) { |
| 905 | breakRemoveRow(row); |
| 906 | break; |
| 907 | } |
| 908 | } |
| 909 | } |
| 910 | |
| 911 | void MainWindow::breakRemove(uint32_t address) { |
| 912 | for (int row = 0; row < m_breakpoints->rowCount(); row++) { |