| 528 | } |
| 529 | |
| 530 | bool UBFeaturesController::isDocumentInFavoriteList(QString documentFolderName) |
| 531 | { |
| 532 | for(auto&& url : std::as_const(*favoriteSet)) |
| 533 | { |
| 534 | QString localFile = url.toLocalFile(); |
| 535 | if (localFile.endsWith(".rdf")) |
| 536 | { |
| 537 | if (localFile.section('/', -2, -2) == documentFolderName) //section before "/metadata.rdf" is documentFolderName |
| 538 | { |
| 539 | return true; |
| 540 | } |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | return false; |
| 545 | } |
| 546 | |
| 547 | bool UBFeaturesController::isInRecentlyOpenDocuments(QString documentFolderName) |
| 548 | { |
no outgoing calls
no test coverage detected