diff options
author | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-04-08 05:27:55 (GMT) |
---|---|---|
committer | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-04-08 06:30:49 (GMT) |
commit | 02d0f442177d7f232dc98ac9ee58c70c3e09c086 (patch) | |
tree | 9c328caf58b448150f9f1609fedf9644f874e720 /examples/declarative/plugins/com/nokia/TimeExample/Clock.qml | |
parent | fda3e9d3e36e95392ad0882b445bb004001b9688 (diff) | |
download | Qt-02d0f442177d7f232dc98ac9ee58c70c3e09c086.zip Qt-02d0f442177d7f232dc98ac9ee58c70c3e09c086.tar.gz Qt-02d0f442177d7f232dc98ac9ee58c70c3e09c086.tar.bz2 |
Renamed 'source' property from SpringFollow to 'to'
Diffstat (limited to 'examples/declarative/plugins/com/nokia/TimeExample/Clock.qml')
-rw-r--r-- | examples/declarative/plugins/com/nokia/TimeExample/Clock.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/plugins/com/nokia/TimeExample/Clock.qml b/examples/declarative/plugins/com/nokia/TimeExample/Clock.qml index 3ebbeab..ce1dd69 100644 --- a/examples/declarative/plugins/com/nokia/TimeExample/Clock.qml +++ b/examples/declarative/plugins/com/nokia/TimeExample/Clock.qml @@ -20,7 +20,7 @@ Rectangle { origin.x: 7.5; origin.y: 73; angle: 0 SpringFollow on angle { spring: 2; damping: 0.2; modulus: 360 - source: (clock.hours * 30) + (clock.minutes * 0.5) + to: (clock.hours * 30) + (clock.minutes * 0.5) } } } @@ -34,7 +34,7 @@ Rectangle { origin.x: 6.5; origin.y: 83; angle: 0 SpringFollow on angle { spring: 2; damping: 0.2; modulus: 360 - source: clock.minutes * 6 + to: clock.minutes * 6 } } } |