summaryrefslogtreecommitdiffstats
path: root/src/widgets/styles/qstylesheetstyle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/styles/qstylesheetstyle.cpp')
-rw-r--r--src/widgets/styles/qstylesheetstyle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/styles/qstylesheetstyle.cpp b/src/widgets/styles/qstylesheetstyle.cpp
index 7a0cc09452..c909def969 100644
--- a/src/widgets/styles/qstylesheetstyle.cpp
+++ b/src/widgets/styles/qstylesheetstyle.cpp
@@ -2505,7 +2505,7 @@ void QStyleSheetStyle::setProperties(QWidget *w)
// properties in the order they are specified.
QHash<QString, QVariant> propertyHash;
QVector<QString> properties;
- QVector<Declaration> decls = declarations(styleRules(w), QString());
+ const QVector<Declaration> decls = declarations(styleRules(w), QString());
// run through the declarations in order
for (int i = 0; i < decls.count(); i++) {
@@ -2521,7 +2521,7 @@ void QStyleSheetStyle::setProperties(QWidget *w)
qWarning() << w << " does not have a property named " << property;
continue;
}
- QMetaProperty metaProperty = metaObject->property(index);
+ const QMetaProperty metaProperty = metaObject->property(index);
if (!metaProperty.isWritable() || !metaProperty.isDesignable()) {
qWarning() << w << " cannot design property named " << property;
continue;