summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-10-14 08:22:57 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-10-14 08:23:52 (GMT)
commitc407d79f79c67f2f2bb84efc93061fd57fe4cf54 (patch)
treed56dcae60c345acaf5d4e3a0251dde99785b3ec6 /tests/auto/declarative/qdeclarativeecmascript/data
parent1048ac9f491bf2e79c469d0451e437a1a485bef5 (diff)
downloadQt-c407d79f79c67f2f2bb84efc93061fd57fe4cf54.zip
Qt-c407d79f79c67f2f2bb84efc93061fd57fe4cf54.tar.gz
Qt-c407d79f79c67f2f2bb84efc93061fd57fe4cf54.tar.bz2
Correctly splice properties from derived metaobjects together
Task-number: QTBUG-14449
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/propertySplicing.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/propertySplicing.qml b/tests/auto/declarative/qdeclarativeecmascript/data/propertySplicing.qml
new file mode 100644
index 0000000..7deb84a
--- /dev/null
+++ b/tests/auto/declarative/qdeclarativeecmascript/data/propertySplicing.qml
@@ -0,0 +1,10 @@
+import Qt.test 1.0
+import QtQuick 1.0
+
+MyDerivedObject {
+ property bool test: false
+
+ Component.onCompleted: {
+ test = intProperty()
+ }
+}