summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/scxml/calculator-common/statemachine.scxml2
-rw-r--r--examples/scxml/pinball/pinball.scxml2
-rw-r--r--tests/auto/statemachine/eventoccurred.scxml2
3 files changed, 3 insertions, 3 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>
diff --git a/tests/auto/statemachine/eventoccurred.scxml b/tests/auto/statemachine/eventoccurred.scxml
index ffceb3f..c77da54 100644
--- a/tests/auto/statemachine/eventoccurred.scxml
+++ b/tests/auto/statemachine/eventoccurred.scxml
@@ -35,7 +35,7 @@
<onentry>
<raise event="internalEvent1"/>
<send event="internalEvent2"/>
- <send type="qt:signal" event="externalEvent"/>
+ <send event="externalEvent"/>
<send event="timeout" delay="1s"/>
</onentry>
<transition event="timeout" target="final"/>