aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/particles/plasmapatrol/content
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2012-01-25 20:48:04 +1000
committerQt by Nokia <qt-info@nokia.com>2012-01-27 06:18:00 +0100
commita838eea33313967e501a5a045d2a68d2a35e7533 (patch)
tree70bda2ec792b4ea2999a13fe95bb461edfc63953 /examples/declarative/particles/plasmapatrol/content
parent16ca1d7d65e66969724d4b490fa9a614b88f4bc3 (diff)
Update Sprite using examples to frameDuration
While it's good to test the interim compatibility code, examples are not supposed to print any warnings. Change-Id: Ie6560213fd89b0ca4162c5b48dbaf86dee63cb48 Reviewed-by: Martin Jones <martin.jones@nokia.com>
Diffstat (limited to 'examples/declarative/particles/plasmapatrol/content')
-rw-r--r--examples/declarative/particles/plasmapatrol/content/PlasmaPatrolParticles.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/particles/plasmapatrol/content/PlasmaPatrolParticles.qml b/examples/declarative/particles/plasmapatrol/content/PlasmaPatrolParticles.qml
index 724cb34a2e..1ca5ff54ce 100644
--- a/examples/declarative/particles/plasmapatrol/content/PlasmaPatrolParticles.qml
+++ b/examples/declarative/particles/plasmapatrol/content/PlasmaPatrolParticles.qml
@@ -128,19 +128,19 @@ Item {
name: "spinning"
source: "pics/meteor.png"
frames: 35
- duration: 40
+ frameDuration: 40
to: {"death":0, "spinning":1}
},Sprite {
name: "death"
source: "pics/meteor_explo.png"
frames: 22
- duration: 40
+ frameDuration: 40
to: {"null":1}
}, Sprite {
name: "null"
source: "pics/nullRock.png"
frames: 1
- duration: 1000
+ frameDuration: 1000
}
]
}