take opportunity to use const
authorMark Brand <mabrand@mabrand.nl>
Mon, 12 Mar 2012 20:14:37 +0000 (21:14 +0100)
committerQt by Nokia <qt-info@nokia.com>
Tue, 13 Mar 2012 09:11:22 +0000 (10:11 +0100)
Change-Id: Ief12d4b55e1705c758dae8078cf52948fcd9565b
Reviewed-by: Richard J. Moore <rich@kde.org>
src/widgets/styles/qstylesheetstyle.cpp

index 7a0cc09..c909def 100644 (file)
@@ -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;