| 46 | } |
| 47 | |
| 48 | void IBreakpointController::updateState(int row, Breakpoint::BreakpointState state) |
| 49 | { |
| 50 | auto* const modelBreakpoint = breakpointModel()->breakpoint(row); |
| 51 | Q_ASSERT(modelBreakpoint); |
| 52 | modelBreakpoint->setState(state); |
| 53 | } |
| 54 | |
| 55 | void IBreakpointController::updateHitCount(int row, int hitCount) |
| 56 | { |
nothing calls this directly
no test coverage detected