fixing define

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50395 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2007-12-01 05:27:52 +00:00
parent e51bc1ec1a
commit 0fa6a0ac1a

View File

@@ -759,7 +759,7 @@ wxMacCoreGraphicsFontData::wxMacCoreGraphicsFontData(wxGraphicsRenderer* rendere
wxASSERT_MSG( status == noErr , wxT("couldn't modify ATSU style") ); wxASSERT_MSG( status == noErr , wxT("couldn't modify ATSU style") );
#endif #endif
#if WXMAC_USE_CG_TEXT #if wxMAC_USE_CG_TEXT
#endif #endif
} }
@@ -774,7 +774,7 @@ wxMacCoreGraphicsFontData::~wxMacCoreGraphicsFontData()
m_macATSUIStyle = NULL; m_macATSUIStyle = NULL;
} }
#endif #endif
#if WXMAC_USE_CG_TEXT #if wxMAC_USE_CG_TEXT
#endif #endif
} }
@@ -1774,7 +1774,7 @@ void wxMacCoreGraphicsContext::DrawText( const wxString &str, wxDouble x, wxDoub
return; return;
} }
#endif #endif
#if WXMAC_USE_CG_TEXT #if wxMAC_USE_CG_TEXT
// TODO core graphics text implementation here // TODO core graphics text implementation here
#endif #endif
} }
@@ -1903,7 +1903,7 @@ void wxMacCoreGraphicsContext::DrawText( const wxString &str, wxDouble x, wxDoub
return; return;
} }
#endif #endif
#if WXMAC_USE_CG_TEXT #if wxMAC_USE_CG_TEXT
// default implementation takes care of rotation and calls non rotated DrawText afterwards // default implementation takes care of rotation and calls non rotated DrawText afterwards
wxGraphicsContext::DrawText( str, x, y, angle ); wxGraphicsContext::DrawText( str, x, y, angle );
#endif #endif
@@ -2014,7 +2014,7 @@ void wxMacCoreGraphicsContext::GetTextExtent( const wxString &str, wxDouble *wid
return; return;
} }
#endif #endif
#if WXMAC_USE_CG_TEXT #if wxMAC_USE_CG_TEXT
// TODO core graphics text implementation here // TODO core graphics text implementation here
#endif #endif
} }
@@ -2104,7 +2104,7 @@ void wxMacCoreGraphicsContext::GetPartialTextExtents(const wxString& text, wxArr
#endif #endif
} }
#endif #endif
#if WXMAC_USE_CG_TEXT #if wxMAC_USE_CG_TEXT
// TODO core graphics text implementation here // TODO core graphics text implementation here
#endif #endif
} }