| 80 | } |
| 81 | |
| 82 | void FileList::addPathList(const QStringList &paths) |
| 83 | { |
| 84 | for (const QString& path : paths) { |
| 85 | QFileInfo inf(path); |
| 86 | if (inf.isFile()) |
| 87 | addFile(path); |
| 88 | else |
| 89 | addDirectory(path, true); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | QStringList FileList::getFileList() const |
| 94 | { |
no test coverage detected