]> git.saurik.com Git - wxWidgets.git/commitdiff
Compilo fix for wxUSE_INTL=0 and use wxCSConv for broken filenames instead of wxMBCon...
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Wed, 13 Apr 2005 12:37:53 +0000 (12:37 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Wed, 13 Apr 2005 12:37:53 +0000 (12:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33563 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/strconv.cpp

index 9df03b339f385a1892154d6ef082932e9ab7b7f3..69fc4a81261a3e72b5671500b340f453fcc2dc71 100644 (file)
@@ -377,15 +377,17 @@ wxConvBrokenFileNames::wxConvBrokenFileNames()
     }
     else // no G_FILENAME_ENCODING
     {
+#if wxUSE_INTL        
         if ( encName.empty() )
             encName = wxLocale::GetSystemEncodingName().Upper();
+#endif
 
         // (2) if a non default locale is set, assume that the user wants his
         //     filenames in this locale too
         if ( !encName.empty() && encName != _T("UTF-8") && encName != _T("UTF8") )
         {
             wxSetEnv(_T("G_FILENAME_ENCODING"), encName);
-            m_conv = new wxMBConvLibc;
+            m_conv = new wxCSConv(encName);
         }
         else
         {