aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/designer/qquickdesignersupportproperties.cpp
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@theqtcompany.com>2015-07-22 14:39:15 +0200
committerThomas Hartmann <Thomas.Hartmann@digia.com>2015-07-22 19:20:37 +0000
commitbc7dff35723e8f2cf09660b94f7fba9e8478860f (patch)
treec7a537c584a221e25428283571ca9dbe46935e50 /src/quick/designer/qquickdesignersupportproperties.cpp
parentd3a792e7a9c41a6710a953ea4af266d41ee9d261 (diff)
Property names can be utf8
Change-Id: Ib337fa9a366725b8f0491a4816597fa5baeef7a9 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
Diffstat (limited to 'src/quick/designer/qquickdesignersupportproperties.cpp')
-rw-r--r--src/quick/designer/qquickdesignersupportproperties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/designer/qquickdesignersupportproperties.cpp b/src/quick/designer/qquickdesignersupportproperties.cpp
index 300ad6d53e..08ba8c8675 100644
--- a/src/quick/designer/qquickdesignersupportproperties.cpp
+++ b/src/quick/designer/qquickdesignersupportproperties.cpp
@@ -140,7 +140,7 @@ QQuickDesignerSupport::PropertyNameList QQuickDesignerSupportProperties::propert
const QMetaObject *metaObject = object->metaObject();
for (int index = 0; index < metaObject->propertyCount(); ++index) {
QMetaProperty metaProperty = metaObject->property(index);
- QQmlProperty declarativeProperty(object, QLatin1String(metaProperty.name()));
+ QQmlProperty declarativeProperty(object, QString::fromUtf8(metaProperty.name()));
if (declarativeProperty.isValid() && !declarativeProperty.isWritable() && declarativeProperty.propertyTypeCategory() == QQmlProperty::Object) {
if (declarativeProperty.name() != QLatin1String("parent")) {
QObject *childObject = QQmlMetaType::toQObject(declarativeProperty.read());