diff options
Diffstat (limited to 'lib/process_xml.cpp')
-rw-r--r-- | lib/process_xml.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/process_xml.cpp b/lib/process_xml.cpp index e38749f9..0c5b5581 100644 --- a/lib/process_xml.cpp +++ b/lib/process_xml.cpp @@ -75,7 +75,7 @@ void setXmlType(XmlDoc& doc, XmlType type) //throw() wxString xmlAccess::getGlobalConfigFile() { - return toWx(zen::getConfigDir()) + L"GlobalSettings.xml"; + return utfCvrtTo<wxString>(zen::getConfigDir()) + L"GlobalSettings.xml"; } @@ -1177,7 +1177,7 @@ void xmlAccess::readConfig(const Zstring& filename, xmlAccess::XmlBatchConfig& c void xmlAccess::readConfig(xmlAccess::XmlGlobalSettings& config) { - ::readConfig(toZ(getGlobalConfigFile()), XML_TYPE_GLOBAL, config); + ::readConfig(utfCvrtTo<Zstring>(getGlobalConfigFile()), XML_TYPE_GLOBAL, config); } @@ -1448,7 +1448,7 @@ void xmlAccess::writeConfig(const XmlBatchConfig& config, const Zstring& filenam void xmlAccess::writeConfig(const XmlGlobalSettings& config) { - ::writeConfig(config, XML_TYPE_GLOBAL, toZ(getGlobalConfigFile())); //throw FfsXmlError + ::writeConfig(config, XML_TYPE_GLOBAL, utfCvrtTo<Zstring>(getGlobalConfigFile())); //throw FfsXmlError } |