forked from qt-creator/qt-creator
Utils: Use FilePaths alias instead of QList<FilePath>
Change-Id: I2eb0956377e46a34e73208b301eb662704a25e8b Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
@@ -176,7 +176,7 @@ static FilePath clangPlusPlusPath(const FilePath &clangPath)
|
||||
return clangPath.parentDir().pathAppended(clangPath.baseName() + "++").withExecutableSuffix();
|
||||
}
|
||||
|
||||
static QList<FilePath> uniqueNdksForCurrentQtVersions()
|
||||
static FilePaths uniqueNdksForCurrentQtVersions()
|
||||
{
|
||||
const AndroidConfig &config = AndroidConfigurations::currentConfig();
|
||||
|
||||
@@ -185,7 +185,7 @@ static QList<FilePath> uniqueNdksForCurrentQtVersions()
|
||||
return v->targetDeviceTypes().contains(Android::Constants::ANDROID_DEVICE_TYPE);
|
||||
});
|
||||
|
||||
QList<FilePath> uniqueNdks;
|
||||
FilePaths uniqueNdks;
|
||||
for (const QtSupport::QtVersion *version : androidQtVersions) {
|
||||
FilePath ndk = config.ndkLocation(version);
|
||||
if (!uniqueNdks.contains(ndk))
|
||||
|
||||
Reference in New Issue
Block a user