| 84 | } |
| 85 | |
| 86 | UpdateWidget::UpdateWidget(Updater *updater, QWidget *parent) |
| 87 | : QWidget(parent), _updater(updater) { |
| 88 | _elapsed = 0; |
| 89 | setFixedSize(300, 300); |
| 90 | } |
| 91 | |
| 92 | void UpdateWidget::animate() { |
| 93 | _elapsed = (_elapsed + qobject_cast<QTimer *>(sender())->interval()) % 1000; |
nothing calls this directly
no outgoing calls
no test coverage detected