| 338 | } |
| 339 | |
| 340 | void UBFeaturesWidget::onAddDownloadedFileToLibrary(bool pSuccess, QUrl sourceUrl, QString pContentHeader, QByteArray pData, QString pTitle) |
| 341 | { |
| 342 | if (pSuccess) { |
| 343 | qDebug() << pData.length(); |
| 344 | controller->addDownloadedFile(sourceUrl, pData, pContentHeader, pTitle); |
| 345 | controller->refreshModels(); |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | void UBFeaturesWidget::addElementsToFavorite() |
| 350 | { |
nothing calls this directly
no test coverage detected