| 37 | } |
| 38 | |
| 39 | void GammaRay::ProblemCollector::requestScan() |
| 40 | { |
| 41 | clearScans(); |
| 42 | |
| 43 | for (const auto &checker : std::as_const(m_availableCheckers)) { |
| 44 | if (checker.enabled) |
| 45 | checker.callback(); |
| 46 | } |
| 47 | emit problemScansFinished(); |
| 48 | } |
| 49 | |
| 50 | void ProblemCollector::addProblem(const Problem &problem) |
| 51 | { |