| 1364 | } |
| 1365 | |
| 1366 | void MainWindow::watchRemove(uint32_t address) { |
| 1367 | for (int row = 0; row < m_watchpoints->rowCount(); row++) { |
| 1368 | uint32_t test = static_cast<uint32_t>(hex2int(m_watchpoints->item(row, WATCH_LOW_COL)->text())); |
| 1369 | if (address == test) { |
| 1370 | watchRemoveRow(row); |
| 1371 | break; |
| 1372 | } |
| 1373 | } |
| 1374 | } |
| 1375 | |
| 1376 | void MainWindow::watchAddGuiR() { |
| 1377 | m_watchGUIMask = DBG_MASK_READ; |