summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlbindengine/data/bindingLoop.qml
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-09-23 02:51:48 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-09-23 02:51:48 (GMT)
commit11faf8ea7dbff1d81b6e5fbe7c907e5b06be1aa1 (patch)
tree30e17698bd888cd1fd727abc71f84b77a40ad3c3 /tests/auto/declarative/qmlbindengine/data/bindingLoop.qml
parenta24183cc1df3f13b7ec7b4005a36bb58bcfeedb7 (diff)
downloadQt-11faf8ea7dbff1d81b6e5fbe7c907e5b06be1aa1.zip
Qt-11faf8ea7dbff1d81b6e5fbe7c907e5b06be1aa1.tar.gz
Qt-11faf8ea7dbff1d81b6e5fbe7c907e5b06be1aa1.tar.bz2
Use .qml file extension in test
Diffstat (limited to 'tests/auto/declarative/qmlbindengine/data/bindingLoop.qml')
-rw-r--r--tests/auto/declarative/qmlbindengine/data/bindingLoop.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlbindengine/data/bindingLoop.qml b/tests/auto/declarative/qmlbindengine/data/bindingLoop.qml
new file mode 100644
index 0000000..8b22dd1
--- /dev/null
+++ b/tests/auto/declarative/qmlbindengine/data/bindingLoop.qml
@@ -0,0 +1,14 @@
+import Qt.test 1.0
+
+MyQmlContainer {
+ children : [
+ MyQmlObject {
+ id: Object1
+ stringProperty: "hello" + Object2.stringProperty
+ },
+ MyQmlObject {
+ id: Object2
+ stringProperty: "hello" + Object1.stringProperty
+ }
+ ]
+}