summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter/BasicContentExecutor.cpp
diff options
context:
space:
mode:
authoralexzhornyak <alexander.zhornyak@gmail.com>2017-05-13 22:19:47 (GMT)
committeralexzhornyak <alexander.zhornyak@gmail.com>2017-05-13 22:19:47 (GMT)
commit3b94ebf0420f4845054e8b1ae447f894e2c2325f (patch)
tree8b4c52f8fa421908285b0c6b2245a356a5f616cf /src/uscxml/interpreter/BasicContentExecutor.cpp
parentb3c8edc7788fc6bcdd941ecdee5435957bc08366 (diff)
downloaduscxml-3b94ebf0420f4845054e8b1ae447f894e2c2325f.zip
uscxml-3b94ebf0420f4845054e8b1ae447f894e2c2325f.tar.gz
uscxml-3b94ebf0420f4845054e8b1ae447f894e2c2325f.tar.bz2
Final corrections for eval function
Diffstat (limited to 'src/uscxml/interpreter/BasicContentExecutor.cpp')
-rw-r--r--src/uscxml/interpreter/BasicContentExecutor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/interpreter/BasicContentExecutor.cpp b/src/uscxml/interpreter/BasicContentExecutor.cpp
index 932d579..61277bd 100644
--- a/src/uscxml/interpreter/BasicContentExecutor.cpp
+++ b/src/uscxml/interpreter/BasicContentExecutor.cpp
@@ -291,7 +291,7 @@ void BasicContentExecutor::processLog(XERCESC_NS::DOMElement* content) {
void BasicContentExecutor::processScript(XERCESC_NS::DOMElement* content) {
// download as necessary
std::string scriptContent(X(content->getTextContent()));
- _callbacks->evalAsData(scriptContent);
+ _callbacks->eval(scriptContent);
}