| 1136 | } |
| 1137 | |
| 1138 | void 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 | |
| 1144 | void MainWindow::portRemoveSelected() { |
| 1145 | for (int row = 0; row < m_ports->rowCount(); row++){ |
nothing calls this directly
no test coverage detected