| 524 | |
| 525 | |
| 526 | void DebugRegistersWidget::updateContent() |
| 527 | { |
| 528 | if (!m_controller->IsConnected()) |
| 529 | return; |
| 530 | |
| 531 | std::vector<DebugRegister> registers = m_controller->GetRegisters(); |
| 532 | notifyRegistersChanged(registers); |
| 533 | } |
| 534 | |
| 535 | |
| 536 | void DebugRegistersWidget::updateFonts() |
nothing calls this directly
no test coverage detected