]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/xrc/xmlexpat.cpp
compilation fix for Watcom
[wxWidgets.git] / contrib / src / xrc / xmlexpat.cpp
index c7894b4c76700951cbad40d07599589e72bbe3eb..9eaa5c73100e7be7f3a84258136a1f04ac9e9edb 100644 (file)
@@ -33,7 +33,7 @@
 
      - handle unknown encodings
      - process all elements, including CDATA
 
      - handle unknown encodings
      - process all elements, including CDATA
-     - XML resources should automatically select desired encoding besed on
+     - XRC resources should automatically select desired encoding based on
        runtime environment (?) (would need BIN and BINZ formats modification,
        too)
 
        runtime environment (?) (would need BIN and BINZ formats modification,
        too)
 
@@ -44,7 +44,7 @@
 inline static wxString CharToString(const char *s, size_t len = wxSTRING_MAXLEN)
 {
 #if wxUSE_UNICODE
 inline static wxString CharToString(const char *s, size_t len = wxSTRING_MAXLEN)
 {
 #if wxUSE_UNICODE
-    return wxString(s, wxMBConvUTF8, len);
+    return wxString(s, wxConvUTF8, len);
 #else
     return wxString(s, len);
 #endif
 #else
     return wxString(s, len);
 #endif