| 878 | // ------------------------------------------------ |
| 879 | |
| 880 | void MainWindow::breakSetPrev(QTableWidgetItem *current, QTableWidgetItem *previous) { |
| 881 | (void)previous; |
| 882 | if (current == Q_NULLPTR || current->text().isEmpty()) { |
| 883 | return; |
| 884 | } |
| 885 | |
| 886 | if (current->column() == BREAK_ADDR_COL) { |
| 887 | m_prevBreakAddr = current->text(); |
| 888 | } |
| 889 | } |
| 890 | |
| 891 | void MainWindow::breakRemoveRow(int row) { |
| 892 | uint32_t address = static_cast<uint32_t>(hex2int(m_breakpoints->item(row, BREAK_ADDR_COL)->text())); |
nothing calls this directly
no outgoing calls
no test coverage detected