summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/vxml
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-06-07 08:13:27 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-06-07 08:13:27 (GMT)
commiteb6e9807cdb43b408de45ae789916cdf3bebe6f0 (patch)
treed2b34bb201490687097dff9d889f273bc772997a /src/uscxml/plugins/invoker/vxml
parentbb9240d1fba1aab08d44e080ed8c584a050ec189 (diff)
downloaduscxml-eb6e9807cdb43b408de45ae789916cdf3bebe6f0.zip
uscxml-eb6e9807cdb43b408de45ae789916cdf3bebe6f0.tar.gz
uscxml-eb6e9807cdb43b408de45ae789916cdf3bebe6f0.tar.bz2
Still with the getNames refactoring
Diffstat (limited to 'src/uscxml/plugins/invoker/vxml')
-rw-r--r--src/uscxml/plugins/invoker/vxml/VoiceXMLInvoker.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uscxml/plugins/invoker/vxml/VoiceXMLInvoker.h b/src/uscxml/plugins/invoker/vxml/VoiceXMLInvoker.h
index 80d2075..88afc1b 100644
--- a/src/uscxml/plugins/invoker/vxml/VoiceXMLInvoker.h
+++ b/src/uscxml/plugins/invoker/vxml/VoiceXMLInvoker.h
@@ -41,9 +41,9 @@ public:
virtual std::list<std::string> getNames() {
std::list<std::string> names;
- names.insert("vxml");
- names.insert("voicexml");
- names.insert("http://www.w3.org/TR/voicexml21/");
+ names.push_back("vxml");
+ names.push_back("voicexml");
+ names.push_back("http://www.w3.org/TR/voicexml21/");
return names;
}