diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-10-05 00:33:12 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-10-05 00:33:12 (GMT) |
commit | 587a0ca36000d9446f2ec9be7276bd734ee4b999 (patch) | |
tree | 1e94a945a7c5b513d4fab1e8030d7881e35e8dcf /tests/benchmarks | |
parent | cbdec55395813f3c7b590dfd166cfd5edd884f17 (diff) | |
download | Qt-587a0ca36000d9446f2ec9be7276bd734ee4b999.zip Qt-587a0ca36000d9446f2ec9be7276bd734ee4b999.tar.gz Qt-587a0ca36000d9446f2ec9be7276bd734ee4b999.tar.bz2 |
Fix benchmark.
Diffstat (limited to 'tests/benchmarks')
-rw-r--r-- | tests/benchmarks/declarative/qmlcomponent/samegame/BoomBlock.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/benchmarks/declarative/qmlcomponent/samegame/BoomBlock.qml b/tests/benchmarks/declarative/qmlcomponent/samegame/BoomBlock.qml index 7860cf4..a495cd0 100644 --- a/tests/benchmarks/declarative/qmlcomponent/samegame/BoomBlock.qml +++ b/tests/benchmarks/declarative/qmlcomponent/samegame/BoomBlock.qml @@ -7,8 +7,8 @@ Item { id:block property int targetX: 0 property int targetY: 0 - x: Follow { enabled: spawned; source: targetX; spring: 2; damping: 0.2 } - y: Follow { source: targetY; spring: 2; damping: 0.2 } + x: SpringFollow { enabled: spawned; source: targetX; spring: 2; damping: 0.2 } + y: SpringFollow { source: targetY; spring: 2; damping: 0.2 } Image { id: img source: { |