aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/touchinteraction/multipointtouch/multiflame.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/touchinteraction/multipointtouch/multiflame.qml')
-rw-r--r--examples/quick/touchinteraction/multipointtouch/multiflame.qml20
1 files changed, 10 insertions, 10 deletions
diff --git a/examples/quick/touchinteraction/multipointtouch/multiflame.qml b/examples/quick/touchinteraction/multipointtouch/multiflame.qml
index 7922acc6c4..2697cd94b7 100644
--- a/examples/quick/touchinteraction/multipointtouch/multiflame.qml
+++ b/examples/quick/touchinteraction/multipointtouch/multiflame.qml
@@ -63,33 +63,33 @@ Rectangle {
//! [1]
ParticleFlame {
color: "red"
- x: touch1.x
- y: touch1.y
+ emitterX: touch1.x
+ emitterY: touch1.y
emitting: touch1.pressed
}
//! [1]
ParticleFlame {
color: "green"
- x: touch2.x
- y: touch2.y
+ emitterX: touch2.x
+ emitterY: touch2.y
emitting: touch2.pressed
}
ParticleFlame {
color: "yellow"
- x: touch11.x
- y: touch11.y
+ emitterX: touch11.x
+ emitterY: touch11.y
emitting: touch11.pressed
}
ParticleFlame {
color: "blue"
- x: touch21.x
- y: touch21.y
+ emitterX: touch21.x
+ emitterY: touch21.y
emitting: touch21.pressed
}
ParticleFlame {
color: "violet"
- x: touch31.x
- y: touch31.y
+ emitterX: touch31.x
+ emitterY: touch31.y
emitting: touch31.pressed
}
}