summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorJoona Petrell <joona.t.petrell@nokia.com>2010-02-24 01:43:56 (GMT)
committerJoona Petrell <joona.t.petrell@nokia.com>2010-02-24 01:43:56 (GMT)
commit4066e60e859853cfe3240245ba05271e79839506 (patch)
treee4d0d803f838df14085ba131cb52466785d1542f /tests/auto
parent5f8feb8be1a90bbfe69359c658edd745141423a8 (diff)
downloadQt-4066e60e859853cfe3240245ba05271e79839506.zip
Qt-4066e60e859853cfe3240245ba05271e79839506.tar.gz
Qt-4066e60e859853cfe3240245ba05271e79839506.tar.bz2
Fix positioner auto test with new easing curve syntax
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/declarative/qmlgraphicspositioners/data/propertychanges.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/declarative/qmlgraphicspositioners/data/propertychanges.qml b/tests/auto/declarative/qmlgraphicspositioners/data/propertychanges.qml
index c3dc7bf..4370a18 100644
--- a/tests/auto/declarative/qmlgraphicspositioners/data/propertychanges.qml
+++ b/tests/auto/declarative/qmlgraphicspositioners/data/propertychanges.qml
@@ -2,14 +2,14 @@ import Qt 4.6
Grid {
id: myGrid
-
+
width: 270
height: 270
x: 3
y: 3
columns: 4
spacing: 3
-
+
add: columnTransition
move: columnTransition
@@ -24,7 +24,7 @@ Grid {
objectName: "rowTransition"
NumberAnimation {
properties: "x,y";
- easing: "easeOutInCubic"
+ easing.type: "OutInCubic"
}
},
Transition {
@@ -32,7 +32,7 @@ Grid {
objectName: "columnTransition"
NumberAnimation {
properties: "x,y";
- easing: "easeOutInCubic"
+ easing.type: "OutInCubic"
}
}
]