summaryrefslogtreecommitdiffstats
path: root/qmake/property.cpp
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2016-01-26 14:38:54 +0100
committerMarc Mutz <marc.mutz@kdab.com>2016-01-28 20:25:18 +0000
commite31541fa6f5f4df64fd44a9a895491c40b8c64b4 (patch)
tree3b49ee58476f6542789d5112dd182d3c2ed1d79a /qmake/property.cpp
parent8d7e913248aa1cad23447668d98911bba01faf4b (diff)
qmake: eradicate Q_FOREACH loops [needing qAsConst()]
... by replacing them with C++11 range-for loops. To avoid detaches of these mutable Qt containers, wrap the container in qAsConst(). Change-Id: If086bea06fe26232a7bb99fad8b09fce4dc74c27 Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com>
Diffstat (limited to 'qmake/property.cpp')
-rw-r--r--qmake/property.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/property.cpp b/qmake/property.cpp
index 273963db2e..9ee08f4b55 100644
--- a/qmake/property.cpp
+++ b/qmake/property.cpp
@@ -151,7 +151,7 @@ QMakeProperty::exec()
#ifdef QT_VERSION_STR
specialProps.append("QT_VERSION");
#endif
- foreach (QString prop, specialProps) {
+ for (const QString &prop : qAsConst(specialProps)) {
ProString val = value(ProKey(prop));
ProString pval = value(ProKey(prop + "/raw"));
ProString gval = value(ProKey(prop + "/get"));