| 43 | |
| 44 | |
| 45 | void AnalysisInfoWidget::timerExpired() |
| 46 | { |
| 47 | auto gpValue = m_data->GetGlobalPointerValue(); |
| 48 | if (gpValue == m_lastGPValue) |
| 49 | return; |
| 50 | |
| 51 | m_lastGPValue = gpValue; |
| 52 | updateDisplay(); |
| 53 | } |
| 54 | |
| 55 | |
| 56 | void AnalysisInfoWidget::updateDisplay() |
nothing calls this directly
no test coverage detected