]> git.saurik.com Git - wxWidgets.git/blobdiff - src/xml/xml.cpp
compilation fix
[wxWidgets.git] / src / xml / xml.cpp
index 16ced8c8f6a34480467b2ff68317b32ffba3486a..e9f3e92df74d0eb0dcdcfaf7b41d595b0f6f2325 100644 (file)
@@ -558,7 +558,8 @@ static int UnknownEncodingHnd(void * WXUNUSED(encodingHandlerData),
     // We must build conversion table for expat. The easiest way to do so
     // is to let wxCSConv convert as string containing all characters to
     // wide character representation:
-    wxCSConv conv(name);
+    wxString str(name, wxConvLibc);
+    wxCSConv conv(str.c_str());
     char mbBuf[2];
     wchar_t wcBuf[10];
     size_t i;