diff options
author | mae <qt-info@nokia.com> | 2009-11-26 13:21:12 (GMT) |
---|---|---|
committer | mae <qt-info@nokia.com> | 2009-12-14 11:25:02 (GMT) |
commit | 5533ff0fc0392f4a9d398646a4cc6f4140fc204a (patch) | |
tree | f01dbfb9aeb2354c0757874ec6c7c5589932e742 /examples | |
parent | 591f45ea74562d603e4e1266f492f9ba8d5fe36e (diff) | |
download | Qt-5533ff0fc0392f4a9d398646a4cc6f4140fc204a.zip Qt-5533ff0fc0392f4a9d398646a4cc6f4140fc204a.tar.gz Qt-5533ff0fc0392f4a9d398646a4cc6f4140fc204a.tar.bz2 |
spring follows do not like to operate on "var" sources
Diffstat (limited to 'examples')
-rw-r--r-- | examples/declarative/tvtennis/tvtennis.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/tvtennis/tvtennis.qml b/examples/declarative/tvtennis/tvtennis.qml index d39e913..f6a3c97 100644 --- a/examples/declarative/tvtennis/tvtennis.qml +++ b/examples/declarative/tvtennis/tvtennis.qml @@ -8,7 +8,7 @@ Rectangle { // Make a ball to bounce Rectangle { // Add a property for the target y coordinate - property var targetY : page.height - 10 + property int targetY : page.height - 10 property var direction : "right" id: ball |