mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
Revert "When saving a session (in a non-English locale) make sure that we use a locale-specific path"
This reverts commit cf5a8651d8.
This commit is contained in:
parent
e3c303d72f
commit
44cba53219
1 changed files with 1 additions and 3 deletions
|
|
@ -11,8 +11,6 @@
|
||||||
#include <libxml/xpath.h>
|
#include <libxml/xpath.h>
|
||||||
#include <libxml/xpathInternals.h>
|
#include <libxml/xpathInternals.h>
|
||||||
|
|
||||||
#include <glibmm/convert.h>
|
|
||||||
|
|
||||||
xmlChar* xml_version = xmlCharStrdup("1.0");
|
xmlChar* xml_version = xmlCharStrdup("1.0");
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
@ -156,7 +154,7 @@ XMLTree::write() const
|
||||||
doc = xmlNewDoc(xml_version);
|
doc = xmlNewDoc(xml_version);
|
||||||
xmlSetDocCompressMode(doc, _compression);
|
xmlSetDocCompressMode(doc, _compression);
|
||||||
writenode(doc, _root, doc->children, 1);
|
writenode(doc, _root, doc->children, 1);
|
||||||
result = xmlSaveFormatFileEnc(Glib::locale_from_utf8 (_filename).c_str(), doc, "UTF-8", 1);
|
result = xmlSaveFormatFileEnc(_filename.c_str(), doc, "UTF-8", 1);
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
if (result == -1) {
|
if (result == -1) {
|
||||||
xmlErrorPtr xerr = xmlGetLastError ();
|
xmlErrorPtr xerr = xmlGetLastError ();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue