summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/uscxml/Interpreter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uscxml/Interpreter.h b/src/uscxml/Interpreter.h
index 420e685..303e126 100644
--- a/src/uscxml/Interpreter.h
+++ b/src/uscxml/Interpreter.h
@@ -420,7 +420,7 @@ public:
}
- std::vector<std::string> getValidEvents() {
+ std::vector<std::string> getEventDescriptors() {
std::vector<std::string> e;
tthread::lock_guard<tthread::recursive_mutex> lock(_mutex);
@@ -627,8 +627,8 @@ public:
return _impl->getReachableTargets();
}
- std::vector<std::string> getValidEvents() {
- return _impl->getValidEvents();
+ std::vector<std::string> getEventDescriptors() {
+ return _impl->getEventDescriptors();
}
void start() {