| 919 | } |
| 920 | |
| 921 | int 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 | |
| 931 | void MainWindow::breakModified(QTableWidgetItem *item) { |
| 932 | if (item == Q_NULLPTR) { |
nothing calls this directly
no outgoing calls
no test coverage detected