]> git.saurik.com Git - wxWidgets.git/commitdiff
fixing string param
authorStefan Csomor <csomor@advancedconcepts.ch>
Sun, 16 Dec 2007 16:59:24 +0000 (16:59 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sun, 16 Dec 2007 16:59:24 +0000 (16:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50748 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/font.cpp

index 5b7f7d684e11d18ae565534b007cafd9ca06fde5..beee3a6e188015418e470aa760337ab7ecec2d16 100644 (file)
@@ -413,7 +413,7 @@ void wxFontRefData::MacFindFont()
      
 // use font descriptor caching
 #if 1
-            wxString lookupname = wxString::Format( "%s_%ld", m_faceName, traits );
+            wxString lookupname = wxString::Format( "%s_%ld", m_faceName.c_str(), traits );
             
             static std::map< std::wstring , wxCFRef< CTFontDescriptorRef > > fontdescriptorcache ;
             
@@ -431,7 +431,7 @@ void wxFontRefData::MacFindFont()
             
 // use font caching
 #if 1
-            wxString lookupnameWithSize = wxString::Format( "%s_%ld_%ld", m_faceName, traits, m_pointSize );
+            wxString lookupnameWithSize = wxString::Format( "%s_%ld_%ld", m_faceName.c_str(), traits, m_pointSize );
             
             static std::map< std::wstring , wxCFRef< CTFontRef > > fontcache ;
             m_ctFont = fontcache[ std::wstring(lookupnameWithSize.wc_str()) ];