summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/animations
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-06-26 01:16:57 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-06-26 02:04:36 (GMT)
commitffc9e62cbf7e24cd04a1202de1b3e618f9e12642 (patch)
treefaf828900c05b748e39158eb6a1fb59c44ba3763 /tests/auto/declarative/animations
parent662488175fb9c6a44e9641867177b5396c507891 (diff)
downloadQt-ffc9e62cbf7e24cd04a1202de1b3e618f9e12642.zip
Qt-ffc9e62cbf7e24cd04a1202de1b3e618f9e12642.tar.gz
Qt-ffc9e62cbf7e24cd04a1202de1b3e618f9e12642.tar.bz2
Rename NumericAnimation -> NumberAnimation
Diffstat (limited to 'tests/auto/declarative/animations')
-rw-r--r--tests/auto/declarative/animations/data/badtype2.qml2
-rw-r--r--tests/auto/declarative/animations/data/badtype4.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/animations/data/badtype2.qml b/tests/auto/declarative/animations/data/badtype2.qml
index 18d9079..aa248a6 100644
--- a/tests/auto/declarative/animations/data/badtype2.qml
+++ b/tests/auto/declarative/animations/data/badtype2.qml
@@ -5,6 +5,6 @@ Rect {
color: "red"
width: 50; height: 50
x: 100; y: 100
- x: NumericAnimation { from: "blue"; to: "green"; running: true; }
+ x: NumberAnimation { from: "blue"; to: "green"; running: true; }
}
}
diff --git a/tests/auto/declarative/animations/data/badtype4.qml b/tests/auto/declarative/animations/data/badtype4.qml
index e3d312e..fa4eebe 100644
--- a/tests/auto/declarative/animations/data/badtype4.qml
+++ b/tests/auto/declarative/animations/data/badtype4.qml
@@ -18,6 +18,6 @@ Rect {
}
transitions: Transition {
ColorAnimation { properties: "x,color"; duration: 1000 } //x is real, color is color
- //NumericAnimation { properties: "x,color"; duration: 1000 } //x is real, color is color
+ //NumberAnimation { properties: "x,color"; duration: 1000 } //x is real, color is color
}
}