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 /demos | |
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 'demos')
-rw-r--r-- | demos/declarative/samegame/SamegameCore/BoomBlock.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/declarative/samegame/SamegameCore/BoomBlock.qml b/demos/declarative/samegame/SamegameCore/BoomBlock.qml index 838b346..db43182 100644 --- a/demos/declarative/samegame/SamegameCore/BoomBlock.qml +++ b/demos/declarative/samegame/SamegameCore/BoomBlock.qml @@ -8,8 +8,8 @@ Item { id:block property int targetX: 0 property int targetY: 0 - SpringFollow on x { enabled: spawned; source: targetX; spring: 2; damping: 0.2 } - SpringFollow on y { source: targetY; spring: 2; damping: 0.2 } + SpringFollow on x { enabled: spawned; to: targetX; spring: 2; damping: 0.2 } + SpringFollow on y { to: targetY; spring: 2; damping: 0.2 } Image { id: img source: { |