diff options
Diffstat (limited to 'tests/auto/declarative/animations')
8 files changed, 8 insertions, 8 deletions
diff --git a/tests/auto/declarative/animations/data/badtype1.qml b/tests/auto/declarative/animations/data/badtype1.qml index 1e689d5..6381df3 100644 --- a/tests/auto/declarative/animations/data/badtype1.qml +++ b/tests/auto/declarative/animations/data/badtype1.qml @@ -7,6 +7,6 @@ Rectangle { color: "red" width: 50; height: 50 x: 100; y: 100 - x: PropertyAnimation { from: "blue"; to: "green"; running: true; } + x: PropertyAnimation { from: "blue"; to: "green"; } } } diff --git a/tests/auto/declarative/animations/data/badtype2.qml b/tests/auto/declarative/animations/data/badtype2.qml index e97194d..8d57e41 100644 --- a/tests/auto/declarative/animations/data/badtype2.qml +++ b/tests/auto/declarative/animations/data/badtype2.qml @@ -7,6 +7,6 @@ Rectangle { color: "red" width: 50; height: 50 x: 100; y: 100 - x: NumberAnimation { from: "blue"; to: "green"; running: true; } + x: NumberAnimation { from: "blue"; to: "green"; } } } diff --git a/tests/auto/declarative/animations/data/badtype3.qml b/tests/auto/declarative/animations/data/badtype3.qml index b2d738f..c4867c3 100644 --- a/tests/auto/declarative/animations/data/badtype3.qml +++ b/tests/auto/declarative/animations/data/badtype3.qml @@ -5,7 +5,7 @@ Rectangle { height: 320 Rectangle { color: "red" - color: ColorAnimation { from: 10; to: 15; running: true; } + color: ColorAnimation { from: 10; to: 15; } width: 50; height: 50 x: 100; y: 100 } diff --git a/tests/auto/declarative/animations/data/properties.qml b/tests/auto/declarative/animations/data/properties.qml index a8023b4..7e73f57 100644 --- a/tests/auto/declarative/animations/data/properties.qml +++ b/tests/auto/declarative/animations/data/properties.qml @@ -9,6 +9,6 @@ Rectangle { color: "red" width: 50; height: 50 x: 100; y: 100 - x: NumberAnimation { to: 200; running: true; } + x: NumberAnimation { to: 200 } } } diff --git a/tests/auto/declarative/animations/data/properties2.qml b/tests/auto/declarative/animations/data/properties2.qml index aab7661..86568ca 100644 --- a/tests/auto/declarative/animations/data/properties2.qml +++ b/tests/auto/declarative/animations/data/properties2.qml @@ -9,6 +9,6 @@ Rectangle { color: "red" width: 50; height: 50 x: 100; y: 100 - x: NumberAnimation { matchTargets: theRect; matchProperties: "x"; to: 200; running: true } + x: NumberAnimation { matchTargets: theRect; matchProperties: "x"; to: 200; } } } diff --git a/tests/auto/declarative/animations/data/properties3.qml b/tests/auto/declarative/animations/data/properties3.qml index fd21a85..ff08885 100644 --- a/tests/auto/declarative/animations/data/properties3.qml +++ b/tests/auto/declarative/animations/data/properties3.qml @@ -9,6 +9,6 @@ Rectangle { color: "red" width: 50; height: 50 x: 100; y: 100 - x: NumberAnimation { target: theRect; property: "x"; to: 300; running: true } + x: NumberAnimation { target: theRect; property: "x"; to: 300; } } } diff --git a/tests/auto/declarative/animations/data/properties4.qml b/tests/auto/declarative/animations/data/properties4.qml index e23651c..dab7e5f 100644 --- a/tests/auto/declarative/animations/data/properties4.qml +++ b/tests/auto/declarative/animations/data/properties4.qml @@ -9,6 +9,6 @@ Rectangle { color: "red" width: 50; height: 50 x: 100; y: 100 - x: NumberAnimation { target: theRect; property: "y"; to: 200; running: true } + x: NumberAnimation { target: theRect; property: "y"; to: 200; } } } diff --git a/tests/auto/declarative/animations/data/properties5.qml b/tests/auto/declarative/animations/data/properties5.qml index 25c9866..56e0be8 100644 --- a/tests/auto/declarative/animations/data/properties5.qml +++ b/tests/auto/declarative/animations/data/properties5.qml @@ -9,6 +9,6 @@ Rectangle { color: "red" width: 50; height: 50 x: 100; y: 100 - x: NumberAnimation { matchTargets: theRect; matchProperties: "y"; to: 200; running: true } + x: NumberAnimation { matchTargets: theRect; matchProperties: "y"; to: 200; } } } |