summaryrefslogtreecommitdiffstats
path: root/apps
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 /apps
parentbb9240d1fba1aab08d44e080ed8c584a050ec189 (diff)
downloaduscxml-eb6e9807cdb43b408de45ae789916cdf3bebe6f0.zip
uscxml-eb6e9807cdb43b408de45ae789916cdf3bebe6f0.tar.gz
uscxml-eb6e9807cdb43b408de45ae789916cdf3bebe6f0.tar.bz2
Still with the getNames refactoring
Diffstat (limited to 'apps')
-rw-r--r--apps/w3c-mmi/im/MMISessionManager.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/w3c-mmi/im/MMISessionManager.h b/apps/w3c-mmi/im/MMISessionManager.h
index d3b0c48..222bf34 100644
--- a/apps/w3c-mmi/im/MMISessionManager.h
+++ b/apps/w3c-mmi/im/MMISessionManager.h
@@ -36,9 +36,9 @@ namespace uscxml {
// IOProcessorImpl
virtual boost::shared_ptr<IOProcessorImpl> create(InterpreterImpl* interpreter);
- virtual std::set<std::string> getNames() {
- std::set<std::string> names;
- names.insert("mmi.event");
+ virtual std::list<std::string> getNames() {
+ std::list<std::string> names;
+ names.push_back("mmi.event");
return names;
}
virtual Data getDataModelVariables();