| 391 | |
| 392 | |
| 393 | void DebugBreakpointsWidget::updateContent() |
| 394 | { |
| 395 | std::vector<DebugBreakpoint> breakpoints = m_controller->GetBreakpoints(); |
| 396 | |
| 397 | std::vector<BreakpointItem> bps; |
| 398 | for (const DebugBreakpoint& bp : breakpoints) |
| 399 | { |
| 400 | ModuleNameAndOffset info; |
| 401 | info.module = bp.module; |
| 402 | info.offset = bp.offset; |
| 403 | bps.emplace_back(bp.enabled, info, bp.address); |
| 404 | } |
| 405 | |
| 406 | m_model->updateRows(bps); |
| 407 | } |
nothing calls this directly
no test coverage detected