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

Method breakSetPrev

gui/qt/debugger.cpp:880–889  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

878// ------------------------------------------------
879
880void 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
891void MainWindow::breakRemoveRow(int row) {
892 uint32_t address = static_cast<uint32_t>(hex2int(m_breakpoints->item(row, BREAK_ADDR_COL)->text()));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected