summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2016-08-09 11:31:08 +0200
committerUlf Hermann <ulf.hermann@qt.io>2016-08-09 10:25:19 +0000
commitced81dfa5e7d4d4c4958fae7521e32e5a18c8678 (patch)
treedff5fca5b7552d5d44f2e14eedaa01961a5ba868 /examples
parent16348dfb793da0601ddd1bfae4da4ed2eca74e22 (diff)
Remove misleading qt:signal declarations
If the document isn't parsed in Qt mode they have no effect. Change-Id: I3c58380b903f33cffc9958e18b009abf9ca5e7d3 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/scxml/calculator-common/statemachine.scxml2
-rw-r--r--examples/scxml/pinball/pinball.scxml2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/scxml/calculator-common/statemachine.scxml b/examples/scxml/calculator-common/statemachine.scxml
index 7971ee0..b1c6bb7 100644
--- a/examples/scxml/calculator-common/statemachine.scxml
+++ b/examples/scxml/calculator-common/statemachine.scxml
@@ -144,7 +144,7 @@
</transition>
<transition event="DISPLAY.UPDATE">
<log label="'result'" expr="short_expr==''?res:short_expr" />
- <send type="qt:signal" event="updateDisplay">
+ <send event="updateDisplay">
<param name="display" expr="short_expr==''?res:short_expr"/>
</send>
</transition>
diff --git a/examples/scxml/pinball/pinball.scxml b/examples/scxml/pinball/pinball.scxml
index c2563ad..21e3591 100644
--- a/examples/scxml/pinball/pinball.scxml
+++ b/examples/scxml/pinball/pinball.scxml
@@ -265,7 +265,7 @@
</transition>
<transition event="updateLights">
- <send type="qt:signal" event="updateScore">
+ <send event="updateScore">
<param name="highScore" expr="highScore"/>
<param name="score" expr="score"/>
</send>