aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/qbs-setup-toolchains/xcodeprobe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/qbs-setup-toolchains/xcodeprobe.cpp')
-rw-r--r--src/app/qbs-setup-toolchains/xcodeprobe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/qbs-setup-toolchains/xcodeprobe.cpp b/src/app/qbs-setup-toolchains/xcodeprobe.cpp
index ce82dd5cf..c9f8f49fd 100644
--- a/src/app/qbs-setup-toolchains/xcodeprobe.cpp
+++ b/src/app/qbs-setup-toolchains/xcodeprobe.cpp
@@ -91,7 +91,7 @@ bool XcodeProbe::addDeveloperPath(const QString &path)
return false;
if (developerPaths.contains(path))
return false;
- developerPaths.append(path);
+ developerPaths.push_back(path);
qbsInfo() << Tr::tr("Added developer path %1").arg(path);
return true;
}