forked from qt-creator/qt-creator
Utils: Use an enum indication the possible abort of an dir iteration
The bool is not really clear. Change-Id: I4ce6412736aec6b1853fd53d4e535ad045748350 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -220,7 +220,6 @@ QtVersions KitDetectorPrivate::autoDetectQtVersions() const
|
||||
[qtVersion](QtVersion* other) {
|
||||
return qtVersion->mkspecPath() == other->mkspecPath();
|
||||
})) {
|
||||
|
||||
qtVersions.append(qtVersion);
|
||||
QtVersionManager::addVersion(qtVersion);
|
||||
emit q->logOutput(
|
||||
@@ -228,7 +227,7 @@ QtVersions KitDetectorPrivate::autoDetectQtVersions() const
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
return IterationPolicy::Continue;
|
||||
};
|
||||
|
||||
emit q->logOutput(ProjectExplorer::Tr::tr("Searching for qmake executables..."));
|
||||
|
||||
Reference in New Issue
Block a user