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

Method breakRemove

gui/qt/debugger.cpp:911–919  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

909}
910
911void MainWindow::breakRemove(uint32_t address) {
912 for (int row = 0; row < m_breakpoints->rowCount(); row++) {
913 uint32_t test = static_cast<uint32_t>(hex2int(m_breakpoints->item(row, BREAK_ADDR_COL)->text()));
914 if (address == test) {
915 breakRemoveRow(row);
916 break;
917 }
918 }
919}
920
921int MainWindow::breakGetMask(int row) {
922 int mask;

Callers

nothing calls this directly

Calls 2

hex2intFunction · 0.85
rowCountMethod · 0.80

Tested by

no test coverage detected