MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / watchRemove

Method watchRemove

gui/qt/debugger.cpp:1366–1374  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1364}
1365
1366void 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
1376void MainWindow::watchAddGuiR() {
1377 m_watchGUIMask = DBG_MASK_READ;

Callers

nothing calls this directly

Calls 2

hex2intFunction · 0.85
rowCountMethod · 0.80

Tested by

no test coverage detected