| 1495 | } |
| 1496 | |
| 1497 | QStringList VideoCache::getCacheStatusText() |
| 1498 | { |
| 1499 | QStringList txt; |
| 1500 | txt.append("Interactive:"); |
| 1501 | txt.append(interactiveThread[0]->worker()->getStatus()); |
| 1502 | txt.append(interactiveThread[1]->worker()->getStatus()); |
| 1503 | txt.append("Caching:"); |
| 1504 | for (loadingThread *t : cachingThreadList) |
| 1505 | txt.append(t->worker()->getStatus()); |
| 1506 | return txt; |
| 1507 | } |
| 1508 | |
| 1509 | void VideoCache::updateTestProgress() |
| 1510 | { |
no test coverage detected