aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlinfo/data
diff options
context:
space:
mode:
authorMatthew Vogt <matthew.vogt@nokia.com>2012-02-16 14:43:03 +1000
committerQt by Nokia <qt-info@nokia.com>2012-02-24 04:51:31 +0100
commitb855240b782395f94315f43ea3e7e182299fac48 (patch)
treebc594c04449be8cd14cd0ab0bb72dafc2be0ffb2 /tests/auto/qml/qqmlinfo/data
parent6a42a6e0a9a1abdda0d07a5a20b4ac7e45348684 (diff)
Rename QDeclarative symbols to QQuick and QQml
Symbols beginning with QDeclarative are already exported by the quick1 module. Users can apply the bin/rename-qtdeclarative-symbols.sh script to modify client code using the previous names of the renamed symbols. Task-number: QTBUG-23737 Change-Id: Ifaa482663767634931e8711a8e9bf6e404859e66 Reviewed-by: Martin Jones <martin.jones@nokia.com>
Diffstat (limited to 'tests/auto/qml/qqmlinfo/data')
-rw-r--r--tests/auto/qml/qqmlinfo/data/NestedComponent.qml23
-rw-r--r--tests/auto/qml/qqmlinfo/data/NestedObject.qml8
-rw-r--r--tests/auto/qml/qqmlinfo/data/nestedQmlObject.qml8
-rw-r--r--tests/auto/qml/qqmlinfo/data/qmlObject.qml8
4 files changed, 47 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlinfo/data/NestedComponent.qml b/tests/auto/qml/qqmlinfo/data/NestedComponent.qml
new file mode 100644
index 0000000000..cfe47589df
--- /dev/null
+++ b/tests/auto/qml/qqmlinfo/data/NestedComponent.qml
@@ -0,0 +1,23 @@
+import QtQuick 2.0
+
+QtObject {
+ property variant nested
+ property variant nested2: nested.nested
+
+ property variant component
+ component: Component {
+ id: myComponent
+ NestedObject { property string testProp: "test" }
+ }
+
+ property variant component2
+ component2: Component {
+ id: myComponent2
+ Image { property string testProp: "test" }
+ }
+
+ Component.onCompleted: {
+ nested = myComponent.createObject(0);
+ nested2 = myComponent2.createObject(0);
+ }
+}
diff --git a/tests/auto/qml/qqmlinfo/data/NestedObject.qml b/tests/auto/qml/qqmlinfo/data/NestedObject.qml
new file mode 100644
index 0000000000..4b19b11699
--- /dev/null
+++ b/tests/auto/qml/qqmlinfo/data/NestedObject.qml
@@ -0,0 +1,8 @@
+import QtQuick 2.0
+
+QtObject {
+ property variant nested
+
+ nested: QtObject {}
+}
+
diff --git a/tests/auto/qml/qqmlinfo/data/nestedQmlObject.qml b/tests/auto/qml/qqmlinfo/data/nestedQmlObject.qml
new file mode 100644
index 0000000000..d199a612c4
--- /dev/null
+++ b/tests/auto/qml/qqmlinfo/data/nestedQmlObject.qml
@@ -0,0 +1,8 @@
+import QtQuick 2.0
+
+QtObject {
+ property variant nested
+ nested: NestedObject { }
+ property variant nested2: nested.nested
+}
+
diff --git a/tests/auto/qml/qqmlinfo/data/qmlObject.qml b/tests/auto/qml/qqmlinfo/data/qmlObject.qml
new file mode 100644
index 0000000000..6a8e2fbc90
--- /dev/null
+++ b/tests/auto/qml/qqmlinfo/data/qmlObject.qml
@@ -0,0 +1,8 @@
+import QtQuick 2.0
+
+QtObject {
+ property variant nested
+
+ nested: QtObject {
+ }
+}