| 162 | } |
| 163 | |
| 164 | void IBreakpointController::sendMaybeAll() |
| 165 | { |
| 166 | BreakpointModel* model = breakpointModel(); |
| 167 | if (!model) |
| 168 | return; |
| 169 | |
| 170 | const auto breakpoints = model->breakpoints(); |
| 171 | for (Breakpoint* breakpoint : breakpoints) { |
| 172 | sendMaybe(breakpoint); |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | // Temporary implementation to ease the API transition |
| 177 | void IBreakpointController::breakpointAboutToBeDeleted(int row) |
nothing calls this directly
no test coverage detected