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

Method portRemoveRow

gui/qt/debugger.cpp:1138–1142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1136}
1137
1138void MainWindow::portRemoveRow(int row) {
1139 uint16_t port = static_cast<uint16_t>(hex2int(m_ports->item(row, PORT_ADDR_COL)->text()));
1140 debug_ports(port, ~DBG_MASK_NONE, false);
1141 m_ports->removeRow(row);
1142}
1143
1144void MainWindow::portRemoveSelected() {
1145 for (int row = 0; row < m_ports->rowCount(); row++){

Callers

nothing calls this directly

Calls 3

hex2intFunction · 0.85
debug_portsFunction · 0.85
removeRowMethod · 0.80

Tested by

no test coverage detected