summaryrefslogtreecommitdiffstats
path: root/examples/declarative/parallax/qml/Smiley.qml
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2010-05-05 07:44:27 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2010-05-05 07:44:27 (GMT)
commit1383f287137c50c7e58e7f9395f7a9ffd9441852 (patch)
tree25f8a9960cb58132bbf42af688cc44b1569809b1 /examples/declarative/parallax/qml/Smiley.qml
parent238ed995be8f32e815ffb6883144d0547355a8eb (diff)
parent89b4f1eb2bae2f09a9db8094db91a7dabdcdb0a3 (diff)
downloadQt-1383f287137c50c7e58e7f9395f7a9ffd9441852.zip
Qt-1383f287137c50c7e58e7f9395f7a9ffd9441852.tar.gz
Qt-1383f287137c50c7e58e7f9395f7a9ffd9441852.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
Diffstat (limited to 'examples/declarative/parallax/qml/Smiley.qml')
-rw-r--r--examples/declarative/parallax/qml/Smiley.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/parallax/qml/Smiley.qml b/examples/declarative/parallax/qml/Smiley.qml
index b1e1ae8..cfa4fed 100644
--- a/examples/declarative/parallax/qml/Smiley.qml
+++ b/examples/declarative/parallax/qml/Smiley.qml
@@ -30,13 +30,13 @@ Item {
// Move from minHeight to maxHeight in 300ms, using the OutExpo easing function
NumberAnimation {
from: smiley.minHeight; to: smiley.maxHeight
- easing.type: "OutExpo"; duration: 300
+ easing.type: Easing.OutExpo; duration: 300
}
// Then move back to minHeight in 1 second, using the OutBounce easing function
NumberAnimation {
from: smiley.maxHeight; to: smiley.minHeight
- easing.type: "OutBounce"; duration: 1000
+ easing.type: Easing.OutBounce; duration: 1000
}
// Then pause for 500ms