| 563 | } |
| 564 | |
| 565 | void DetectionWizardPage::initializePage() |
| 566 | { |
| 567 | auto *const wizard = qobject_cast<Wizard *>(this->wizard()); |
| 568 | if (!wizard) { |
| 569 | return; |
| 570 | } |
| 571 | if (!m_setupDetection) { |
| 572 | m_setupDetection = &wizard->setupDetection(); |
| 573 | } |
| 574 | |
| 575 | m_setupDetection->reset(); |
| 576 | emit completeChanged(); |
| 577 | QTimer::singleShot(0, this, &DetectionWizardPage::tryToConnect); |
| 578 | } |
| 579 | |
| 580 | void DetectionWizardPage::cleanupPage() |
| 581 | { |
nothing calls this directly
no test coverage detected