diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2010-05-24 13:49:43 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2010-05-24 13:49:43 (GMT) |
commit | af84e21c40d3441546b22f631fc2d34a48580740 (patch) | |
tree | f6757bcac150a9784325d557a12a8d1b5c81a390 /examples | |
parent | 0a2ef85bc7c560f38f5ba591968ce49969893a1c (diff) | |
download | Qt-af84e21c40d3441546b22f631fc2d34a48580740.zip Qt-af84e21c40d3441546b22f631fc2d34a48580740.tar.gz Qt-af84e21c40d3441546b22f631fc2d34a48580740.tar.bz2 |
Fix typo
Diffstat (limited to 'examples')
-rw-r--r-- | examples/declarative/animation/easing/easing.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/animation/easing/easing.qml b/examples/declarative/animation/easing/easing.qml index 939d43b..6d30cf4 100644 --- a/examples/declarative/animation/easing/easing.qml +++ b/examples/declarative/animation/easing/easing.qml @@ -36,7 +36,7 @@ Rectangle { ListElement { name: "Easing.InOutCirc"; type: Easing.InOutCirc; ballColor: "RosyBrown" } ListElement { name: "Easing.OutInCirc"; type: Easing.OutInCirc; ballColor: "SandyBrown" } ListElement { name: "Easing.InElastic"; type: Easing.InElastic; ballColor: "DarkGoldenRod" } - ListElement { name: "Easing.InElastic"; type: Easing.OutElastic; ballColor: "Chocolate" } + ListElement { name: "Easing.OutElastic"; type: Easing.OutElastic; ballColor: "Chocolate" } ListElement { name: "Easing.InOutElastic"; type: Easing.InOutElastic; ballColor: "SaddleBrown" } ListElement { name: "Easing.OutInElastic"; type: Easing.OutInElastic; ballColor: "Brown" } ListElement { name: "Easing.InBack"; type: Easing.InBack; ballColor: "Maroon" } |