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

Method breakGetMask

gui/qt/debugger.cpp:921–929  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

919}
920
921int MainWindow::breakGetMask(int row) {
922 int mask;
923 if (static_cast<QAbstractButton *>(m_breakpoints->cellWidget(row, BREAK_ENABLE_COL))->isChecked()) {
924 mask = DBG_MASK_EXEC;
925 } else {
926 mask = DBG_MASK_NONE;
927 }
928 return mask;
929}
930
931void MainWindow::breakModified(QTableWidgetItem *item) {
932 if (item == Q_NULLPTR) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected