mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-09-22 06:05:36 +08:00
minor corrections for compilation with gcc 3.3 (use cast of address instead
of address of cast) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21359 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
+1
-1
@@ -1781,7 +1781,7 @@ void wxDC::MacInstallFont() const
|
||||
Fixed atsuSize = IntToFixed( int(m_scaleY * font->m_macFontSize) ) ;
|
||||
Style qdStyle = font->m_macFontStyle ;
|
||||
ATSUFontID atsuFont = font->m_macATSUFontID ;
|
||||
status = ::ATSUCreateStyle(&(ATSUStyle)m_macATSUIStyle) ;
|
||||
status = ::ATSUCreateStyle((ATSUStyle *)&m_macATSUIStyle) ;
|
||||
wxASSERT_MSG( status == noErr , wxT("couldn't create ATSU style") ) ;
|
||||
ATSUAttributeTag atsuTags[] =
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user