]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/font.cpp
ensure that we have event loop before showing a modal dialog; this allows to do it...
[wxWidgets.git] / src / osx / carbon / font.cpp
index c7998cd5a70ab6227b255f29a53da2291149d06f..c68ff2bd84776642852ea5cb85fae8d84f43ce8d 100644 (file)
@@ -1058,7 +1058,10 @@ void wxNativeFontInfo::EnsureValid()
         // ATSUFontID and FMFont are equivalent
         FMFontStyle intrinsicStyle = 0 ;
         OSStatus status = FMGetFontFromFontFamilyInstance( m_qdFontFamily , m_qdFontStyle , (FMFont*)&m_atsuFontID , &intrinsicStyle);
-        wxASSERT_MSG( status == noErr , wxT("couldn't get an ATSUFont from font family") );
+        if ( status != noErr )
+        {
+            wxFAIL_MSG( wxT("couldn't get an ATSUFont from font family") );
+        }
         m_atsuAdditionalQDStyles = m_qdFontStyle & (~intrinsicStyle );
         m_atsuFontValid = true;
     }