]> git.saurik.com Git - wxWidgets.git/commitdiff
Enable compilation on mac without wxFontMapper
authorRyan Norton <wxprojects@comcast.net>
Thu, 17 Feb 2005 10:38:45 +0000 (10:38 +0000)
committerRyan Norton <wxprojects@comcast.net>
Thu, 17 Feb 2005 10:38:45 +0000 (10:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32114 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/strconv.cpp

index 5ceede42250f07aab2c5352388833b425d04c2a2..521b70e56ff5e4c06221fa897e94bd32fa921cb7 100644 (file)
@@ -2042,10 +2042,12 @@ public:
         Init(CFStringGetSystemEncoding()) ;
     }
 
+#if wxUSE_FONTMAP
     wxMBConv_mac(const wxChar* name)
     {
         Init( wxMacGetSystemEncFromFontEnc(wxFontMapper::Get()->CharsetToEncoding(name, false) ) ) ;
     }
+#endif
 
     wxMBConv_mac(wxFontEncoding encoding)
     {
@@ -2395,8 +2397,12 @@ wxMBConv *wxCSConv::DoCreate() const
         if ( m_name || ( m_encoding < wxFONTENCODING_UTF16BE ) )
         {
 
+#if wxUSE_FONTMAP
             wxMBConv_mac *conv = m_name ? new wxMBConv_mac(m_name)
                                         : new wxMBConv_mac(m_encoding);
+#else
+            wxMBConv_mac *conv = new wxMBConv_mac(m_encoding);
+#endif
             if ( conv->IsOk() )
                  return conv;