| 53 | } |
| 54 | |
| 55 | void IBreakpointController::updateHitCount(int row, int hitCount) |
| 56 | { |
| 57 | auto* const modelBreakpoint = breakpointModel()->breakpoint(row); |
| 58 | Q_ASSERT(modelBreakpoint); |
| 59 | modelBreakpoint->setHitCount(hitCount); |
| 60 | } |
| 61 | |
| 62 | void IBreakpointController::updateErrorText(int row, const QString& errorText) |
| 63 | { |
nothing calls this directly
no test coverage detected