| 448 | |
| 449 | template<typename Container> |
| 450 | static Path::List toPathList_impl(const Container& list) |
| 451 | { |
| 452 | Path::List ret; |
| 453 | ret.reserve(list.size()); |
| 454 | for (const auto& entry : list) { |
| 455 | Path path(entry); |
| 456 | if (path.isValid()) { |
| 457 | ret << path; |
| 458 | } |
| 459 | } |
| 460 | |
| 461 | ret.squeeze(); |
| 462 | return ret; |
| 463 | } |
| 464 | |
| 465 | Path::List toPathList(const QList<QUrl>& list) |
| 466 | { |
no test coverage detected