13
0

Missing namespaces

git-svn-id: svn://localhost/ardour2/branches/3.0@5176 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Sampo Savolainen 2009-06-13 12:58:34 +00:00
parent 8eb17211b5
commit cd3de6c9bc

View File

@ -383,7 +383,7 @@ std::string Mootcher::getXmlFile(std::string ID, int &length)
if (tags) {
XMLNodeList children = tags->children();
XMLNodeConstIterator niter;
vector<string> strings;
std::vector<std::string> strings;
for (niter = children.begin(); niter != children.end(); ++niter) {
XMLNode *node = *niter;
if( strcmp( node->name().c_str(), "tag") == 0 ) {
@ -391,7 +391,7 @@ std::string Mootcher::getXmlFile(std::string ID, int &length)
if (text) strings.push_back(text->content());
}
}
ARDOUR::Library->set_tags (string("//")+filename, strings);
ARDOUR::Library->set_tags (std::string("//")+filename, strings);
ARDOUR::Library->save_changes ();
}
}