diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-07-23 00:15:14 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-07-23 00:15:14 (GMT) |
commit | dc602e3b9c4d5e4da1d57ed657d82e73401b4531 (patch) | |
tree | 6f1ec1972a6dbeea0830373fe534390da06e6869 /tests/auto/declarative/animations | |
parent | 8dc527a3837c937630c8bbbab034b8bc84d496fb (diff) | |
download | Qt-dc602e3b9c4d5e4da1d57ed657d82e73401b4531.zip Qt-dc602e3b9c4d5e4da1d57ed657d82e73401b4531.tar.gz Qt-dc602e3b9c4d5e4da1d57ed657d82e73401b4531.tar.bz2 |
Move all QML types to Qt/4.6 namespace.
Adjust examples and demos accordingly.
As per QT-558
Diffstat (limited to 'tests/auto/declarative/animations')
10 files changed, 20 insertions, 0 deletions
diff --git a/tests/auto/declarative/animations/data/badproperty1.qml b/tests/auto/declarative/animations/data/badproperty1.qml index dc35775..b88cd6f 100644 --- a/tests/auto/declarative/animations/data/badproperty1.qml +++ b/tests/auto/declarative/animations/data/badproperty1.qml @@ -1,3 +1,5 @@ +import Qt 4.6 + Rect { id: Wrapper width: 240 diff --git a/tests/auto/declarative/animations/data/badtype1.qml b/tests/auto/declarative/animations/data/badtype1.qml index 691d2b3..00db39e 100644 --- a/tests/auto/declarative/animations/data/badtype1.qml +++ b/tests/auto/declarative/animations/data/badtype1.qml @@ -1,3 +1,5 @@ +import Qt 4.6 + Rect { width: 240 height: 320 diff --git a/tests/auto/declarative/animations/data/badtype2.qml b/tests/auto/declarative/animations/data/badtype2.qml index aa248a6..eeaaefc 100644 --- a/tests/auto/declarative/animations/data/badtype2.qml +++ b/tests/auto/declarative/animations/data/badtype2.qml @@ -1,3 +1,5 @@ +import Qt 4.6 + Rect { width: 240 height: 320 diff --git a/tests/auto/declarative/animations/data/badtype3.qml b/tests/auto/declarative/animations/data/badtype3.qml index f1a89b6..cbb1a4d 100644 --- a/tests/auto/declarative/animations/data/badtype3.qml +++ b/tests/auto/declarative/animations/data/badtype3.qml @@ -1,3 +1,5 @@ +import Qt 4.6 + Rect { width: 240 height: 320 diff --git a/tests/auto/declarative/animations/data/badtype4.qml b/tests/auto/declarative/animations/data/badtype4.qml index fa4eebe..3e046fc 100644 --- a/tests/auto/declarative/animations/data/badtype4.qml +++ b/tests/auto/declarative/animations/data/badtype4.qml @@ -1,3 +1,5 @@ +import Qt 4.6 + Rect { id: Wrapper width: 240 diff --git a/tests/auto/declarative/animations/data/color.qml b/tests/auto/declarative/animations/data/color.qml index 051e0e1..8a9ab8a 100644 --- a/tests/auto/declarative/animations/data/color.qml +++ b/tests/auto/declarative/animations/data/color.qml @@ -1,3 +1,5 @@ +import Qt 4.6 + Rect { width: 240 height: 320 diff --git a/tests/auto/declarative/animations/data/dotproperty.qml b/tests/auto/declarative/animations/data/dotproperty.qml index 2cfcefe..25076b8 100644 --- a/tests/auto/declarative/animations/data/dotproperty.qml +++ b/tests/auto/declarative/animations/data/dotproperty.qml @@ -1,3 +1,5 @@ +import Qt 4.6 + Rect { id: Wrapper width: 240 diff --git a/tests/auto/declarative/animations/data/mixedtype1.qml b/tests/auto/declarative/animations/data/mixedtype1.qml index 415bbfb..8b8262b 100644 --- a/tests/auto/declarative/animations/data/mixedtype1.qml +++ b/tests/auto/declarative/animations/data/mixedtype1.qml @@ -1,3 +1,5 @@ +import Qt 4.6 + Rect { id: Wrapper width: 240 diff --git a/tests/auto/declarative/animations/data/mixedtype2.qml b/tests/auto/declarative/animations/data/mixedtype2.qml index 0e9fb8d..95b8ed7 100644 --- a/tests/auto/declarative/animations/data/mixedtype2.qml +++ b/tests/auto/declarative/animations/data/mixedtype2.qml @@ -1,3 +1,5 @@ +import Qt 4.6 + Rect { id: Wrapper width: 240 diff --git a/tests/auto/declarative/animations/data/number.qml b/tests/auto/declarative/animations/data/number.qml index feb551b..bde1168 100644 --- a/tests/auto/declarative/animations/data/number.qml +++ b/tests/auto/declarative/animations/data/number.qml @@ -1,3 +1,5 @@ +import Qt 4.6 + Rect { width: 240 height: 320 |