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

Method watchRemoveSelected

gui/qt/debugger.cpp:1357–1364  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1355}
1356
1357void 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
1366void MainWindow::watchRemove(uint32_t address) {
1367 for (int row = 0; row < m_watchpoints->rowCount(); row++) {

Callers

nothing calls this directly

Calls 1

rowCountMethod · 0.80

Tested by

no test coverage detected