| 1355 | } |
| 1356 | |
| 1357 | void MainWindow::watchRemoveSelected() { |
| 1358 | for (int row = 0; row < m_watchpoints->rowCount(); row++){ |
| 1359 | if (sender() == m_watchpoints->cellWidget(row, WATCH_REMOVE_COL)) { |
| 1360 | watchRemoveRow(row); |
| 1361 | break; |
| 1362 | } |
| 1363 | } |
| 1364 | } |
| 1365 | |
| 1366 | void MainWindow::watchRemove(uint32_t address) { |
| 1367 | for (int row = 0; row < m_watchpoints->rowCount(); row++) { |