summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/Factory.cpp')
-rw-r--r--src/uscxml/Factory.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/uscxml/Factory.cpp b/src/uscxml/Factory.cpp
index 7117de2..4013c58 100644
--- a/src/uscxml/Factory.cpp
+++ b/src/uscxml/Factory.cpp
@@ -730,20 +730,20 @@ void EventHandlerImpl::returnErrorCommunication(const std::string& cause) {
returnEvent(exc);
}
-void EventHandlerImpl::returnEvent(Event& event, bool external) {
+void EventHandlerImpl::returnEvent(Event& event, bool internal) {
if (event.invokeid.length() == 0)
event.invokeid = _invokeId;
if (event.eventType == 0)
- event.eventType = (external ? Event::EXTERNAL : Event::INTERNAL);
+ event.eventType = (internal ? Event::INTERNAL : Event::EXTERNAL);
if (event.origin.length() == 0)
event.origin = "#_" + _invokeId;
if (event.origintype.length() == 0)
event.origintype = _type;
- if (external) {
- _interpreter->receive(event);
- } else {
+ if (internal) {
_interpreter->receiveInternal(event);
+ } else {
+ _interpreter->receive(event);
}
}