From e9fdfd746bc374b7b2cbccb875d36727b3946990 Mon Sep 17 00:00:00 2001 From: Mark Brand Date: Mon, 12 Mar 2012 21:16:40 +0100 Subject: improve declaration scope Change-Id: Id8d8f4e59793ba5fc2d3afa31674009af73a59c9 Reviewed-by: Robin Burchell --- src/widgets/styles/qstylesheetstyle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/styles/qstylesheetstyle.cpp b/src/widgets/styles/qstylesheetstyle.cpp index 15e03af69b..0f53809215 100644 --- a/src/widgets/styles/qstylesheetstyle.cpp +++ b/src/widgets/styles/qstylesheetstyle.cpp @@ -2514,7 +2514,6 @@ void QStyleSheetStyle::setProperties(QWidget *w) if (!property.startsWith(QStringLiteral("qproperty-"), Qt::CaseInsensitive)) continue; property.remove(0, 10); // strip "qproperty-" - const QVariant value = w->property(property.toLatin1()); const QMetaObject *metaObject = w->metaObject(); int index = metaObject->indexOfProperty(property.toLatin1()); if (index == -1) { @@ -2527,6 +2526,7 @@ void QStyleSheetStyle::setProperties(QWidget *w) continue; } QVariant v; + const QVariant value = w->property(property.toLatin1()); switch (value.type()) { // ### Qt 5 // case QVariant::Icon: v = decl.iconValue(); break; -- cgit v1.2.3