| 291 | } |
| 292 | |
| 293 | void |
| 294 | Application::connectDeviceDetect(void) |
| 295 | { |
| 296 | connect( |
| 297 | this, |
| 298 | SIGNAL(detectDevices()), |
| 299 | this->deviceDetectWorker, |
| 300 | SLOT(process())); |
| 301 | |
| 302 | connect( |
| 303 | this->deviceDetectWorker, |
| 304 | SIGNAL(finished()), |
| 305 | this, |
| 306 | SLOT(onDetectFinished())); |
| 307 | } |
| 308 | |
| 309 | QString |
| 310 | Application::getLogText(void) |