| 7 | : QThread(parent) {} |
| 8 | |
| 9 | void DeviceScanner::run() { |
| 10 | QString host = QSysInfo::machineHostName().toUpper(); |
| 11 | if (host.isEmpty()) |
| 12 | host = QStringLiteral("LOCALHOST"); |
| 13 | QVector<DeviceCategory> cats = scanDevices(); |
| 14 | emit scanComplete(host, cats); |
| 15 | } |
nothing calls this directly
no test coverage detected