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

Method breakRemoveRow

gui/qt/debugger.cpp:891–900  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

889}
890
891void MainWindow::breakRemoveRow(int row) {
892 uint32_t address = static_cast<uint32_t>(hex2int(m_breakpoints->item(row, BREAK_ADDR_COL)->text()));
893
894 debug_watch(address, DBG_MASK_EXEC, false);
895 if (!m_guiAdd && !m_useSoftCom) {
896 disasmUpdate();
897 memUpdate();
898 }
899 m_breakpoints->removeRow(row);
900}
901
902void MainWindow::breakRemoveSelected() {
903 for (int row = 0; row < m_breakpoints->rowCount(); row++){

Callers

nothing calls this directly

Calls 3

hex2intFunction · 0.85
debug_watchFunction · 0.85
removeRowMethod · 0.80

Tested by

no test coverage detected