| 261 | }; |
| 262 | |
| 263 | GrepFindFilesThread::GrepFindFilesThread(QObject* parent, |
| 264 | const QList<QUrl>& startDirs, |
| 265 | int depth, const QString& pats, |
| 266 | const QString& excl, |
| 267 | bool onlyProject) |
| 268 | : QThread(parent) |
| 269 | , d_ptr(new GrepFindFilesThreadPrivate{ |
| 270 | startDirs, |
| 271 | onlyProject ? getProjectFileSets(startDirs) : FileSetCollection{}, |
| 272 | pats, excl, depth, {false}, {}}) |
| 273 | { |
| 274 | setTerminationEnabled(false); |
| 275 | } |
| 276 | |
| 277 | GrepFindFilesThread::~GrepFindFilesThread() = default; |
| 278 |
nothing calls this directly
no test coverage detected