]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/font.cpp
survive delete within Notify
[wxWidgets.git] / src / mac / font.cpp
index ab906cad670ebc795f1f203b7454e501793c052f..eec71c52eedae360d9e3ac3e1e6b585aa8b2ba28 100644 (file)
@@ -54,9 +54,9 @@ void wxFontRefData::Init(int pointSize,
     m_faceName = faceName;
     m_encoding = encoding;
 
-       m_macFontNum = 0 ;
-       m_macFontSize = 0;
-       m_macFontStyle = 0;
+    m_macFontNum = 0 ;
+    m_macFontSize = 0;
+    m_macFontStyle = 0;
     m_fontId = 0;
 }
 
@@ -121,6 +121,10 @@ void wxFontRefData::MacFindFont()
        //sequence in order to degrade gracefully while trying to maintain most of the style
        //information, meanwhile we just take the normal font and apply the features after
        OSStatus status = ::ATSUFONDtoFontID(m_macFontNum, normal /*qdStyle*/, (UInt32*)&m_macATSUFontID); 
+    /*
+    status = ATSUFindFontFromName ( (Ptr) m_faceName , strlen( m_faceName ) ,
+        kFontFullName, kFontMacintoshPlatform, kFontRomanScript , kFontNoLanguage  ,  (UInt32*)&m_macATSUFontID ) ;
+    */
        wxASSERT_MSG( status == noErr , "couldn't retrieve font identifier" ) ;
 }