13
0

Ardour session files specify UTF-8.

git-svn-id: svn://localhost/ardour2/trunk@1062 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Taybin Rutkin 2006-11-02 21:30:42 +00:00
parent 06a539420a
commit bf9c767581
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ import SCons.Node.FS
SConsignFile()
EnsureSConsVersion(0, 96)
version = '2.0beta6.1'
version = '2.0beta6.2'
subst_dict = { }

View File

@ -110,7 +110,7 @@ XMLTree::write(void) const
doc = xmlNewDoc((xmlChar *) "1.0");
xmlSetDocCompressMode(doc, _compression);
writenode(doc, _root, doc->children, 1);
result = xmlSaveFormatFile(_filename.c_str(), doc, 1);
result = xmlSaveFormatFileEnc(_filename.c_str(), doc, "UTF-8", 1);
xmlFreeDoc(doc);
if (result == -1) {