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.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/uscxml/Factory.cpp b/src/uscxml/Factory.cpp
index 21e820a..22d6008 100644
--- a/src/uscxml/Factory.cpp
+++ b/src/uscxml/Factory.cpp
@@ -491,7 +491,7 @@ void EventHandlerImpl::returnErrorExecution(const std::string& cause) {
Event exceptionEvent;
exceptionEvent.data.compound["exception"] = Data(cause, Data::VERBATIM);
exceptionEvent.name = "error.execution";
- exceptionEvent.type = Event::PLATFORM;
+ exceptionEvent.eventType = Event::PLATFORM;
returnEvent(exceptionEvent);
}
@@ -499,15 +499,15 @@ void EventHandlerImpl::returnErrorPlatform(const std::string& cause) {
Event exceptionEvent;
exceptionEvent.data.compound["exception"] = Data(cause, Data::VERBATIM);
exceptionEvent.name = "error.platform";
- exceptionEvent.type = Event::PLATFORM;
+ exceptionEvent.eventType = Event::PLATFORM;
returnEvent(exceptionEvent);
}
void EventHandlerImpl::returnEvent(Event& event) {
if (event.invokeid.length() == 0)
event.invokeid = _invokeId;
- if (event.type == 0)
- event.type = Event::EXTERNAL;
+ if (event.eventType == 0)
+ event.eventType = Event::EXTERNAL;
if (event.origin.length() == 0)
event.origin = "#_" + _invokeId;
if (event.origintype.length() == 0)