improve declaration scope

Change-Id: Id8d8f4e59793ba5fc2d3afa31674009af73a59c9
Reviewed-by: Robin Burchell <robin+qt@viroteck.net>
bb10
Mark Brand 2012-03-12 21:16:40 +01:00 committed by Qt by Nokia
parent 6c2c6a48e7
commit e9fdfd746b
1 changed files with 1 additions and 1 deletions

View File

@ -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;