diff options
author | Joona Petrell <joona.t.petrell@nokia.com> | 2010-02-24 01:43:56 (GMT) |
---|---|---|
committer | Joona Petrell <joona.t.petrell@nokia.com> | 2010-02-24 01:43:56 (GMT) |
commit | 4066e60e859853cfe3240245ba05271e79839506 (patch) | |
tree | e4d0d803f838df14085ba131cb52466785d1542f | |
parent | 5f8feb8be1a90bbfe69359c658edd745141423a8 (diff) | |
download | Qt-4066e60e859853cfe3240245ba05271e79839506.zip Qt-4066e60e859853cfe3240245ba05271e79839506.tar.gz Qt-4066e60e859853cfe3240245ba05271e79839506.tar.bz2 |
Fix positioner auto test with new easing curve syntax
-rw-r--r-- | tests/auto/declarative/qmlgraphicspositioners/data/propertychanges.qml | 8 |
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" } } ] |