| 371 | } |
| 372 | |
| 373 | void |
| 374 | TLESourceTab::onTaskProgress(qreal progress, QString string) |
| 375 | { |
| 376 | this->refreshDownloadStatus(); |
| 377 | this->ui->downloadProgress->setFormat(string + " (%p%)"); |
| 378 | this->ui->downloadProgress->setValue(static_cast<int>(progress * 100)); |
| 379 | } |
| 380 | |
| 381 | void |
| 382 | TLESourceTab::onTaskDone(void) |
nothing calls this directly
no test coverage detected