summaryrefslogtreecommitdiff
path: root/share/qtcreator/qml
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@qt.io>2017-07-13 16:15:24 +0200
committerTim Jenssen <tim.jenssen@qt.io>2017-07-17 10:38:08 +0000
commitd5342eff77a3857e3d4341bef045e2ab01c73175 (patch)
tree28a27ac811ebe99fd944a6908a0a5ae21616bb23 /share/qtcreator/qml
parent0b1eaacabba0c0b9366766b020597d9280ff19af (diff)
downloadqt-creator-d5342eff77a3857e3d4341bef045e2ab01c73175.tar.gz
fix property spelling
Change-Id: I00f84ec8d2c83d7f3937d2e21a24e02ba28991b3 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'share/qtcreator/qml')
-rw-r--r--share/qtcreator/qml/qmlpuppet/qmlprivategate/metaobject.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/qtcreator/qml/qmlpuppet/qmlprivategate/metaobject.cpp b/share/qtcreator/qml/qmlpuppet/qmlprivategate/metaobject.cpp
index 0b887fa027..08caa70368 100644
--- a/share/qtcreator/qml/qmlpuppet/qmlprivategate/metaobject.cpp
+++ b/share/qtcreator/qml/qmlpuppet/qmlprivategate/metaobject.cpp
@@ -304,9 +304,9 @@ int MetaObject::metaCall(QMetaObject::Call call, int id, void **a)
&& property(id).name() == QLatin1String("parent"))) {
QObject *contextDummyObject = objectNodeInstance->nodeInstanceServer()->dummyContextObject();
- int properyIndex = contextDummyObject->metaObject()->indexOfProperty(propertyById.name());
- if (properyIndex >= 0)
- metaCallReturnValue = contextDummyObject->qt_metacall(call, properyIndex, a);
+ int propertyIndex = contextDummyObject->metaObject()->indexOfProperty(propertyById.name());
+ if (propertyIndex >= 0)
+ metaCallReturnValue = contextDummyObject->qt_metacall(call, propertyIndex, a);
}
}
*/