summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gansen <c64zottel@gmail.com>2016-03-16 12:42:46 (GMT)
committerAndreas Gansen <c64zottel@gmail.com>2016-03-16 12:42:46 (GMT)
commit1cec449a5449e7d3c5c0bca34d83f85ab4a4c2e1 (patch)
tree769b9b72da4fea5636519a77d34b53239a25fc64
parentd9abe5a5480dd3f2c0fd0110b02c1a370f5a3b02 (diff)
downloaduscxml-1cec449a5449e7d3c5c0bca34d83f85ab4a4c2e1.zip
uscxml-1cec449a5449e7d3c5c0bca34d83f85ab4a4c2e1.tar.gz
uscxml-1cec449a5449e7d3c5c0bca34d83f85ab4a4c2e1.tar.bz2
renaming getValidEvents() to getEventDescriptors()
-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() {