From: Julian Smart Date: Wed, 20 Jun 2007 13:21:46 +0000 (+0000) Subject: Fix for non-CG mode X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a201463482dc4417592ee014ff1a9706e8971dd6 Fix for non-CG mode git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46557 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/dc.cpp b/src/mac/carbon/dc.cpp index 79195c147d..f06e840b55 100644 --- a/src/mac/carbon/dc.cpp +++ b/src/mac/carbon/dc.cpp @@ -2139,48 +2139,4 @@ void wxDC::MacInstallBrush() const m_macFontInstalled = false ; } -// --------------------------------------------------------------------------- -// coordinates transformations -// --------------------------------------------------------------------------- - -wxCoord wxDC::DeviceToLogicalX(wxCoord x) const -{ - return XDEV2LOG(x); -} - -wxCoord wxDC::DeviceToLogicalY(wxCoord y) const -{ - return YDEV2LOG(y); -} - -wxCoord wxDC::DeviceToLogicalXRel(wxCoord x) const -{ - return XDEV2LOGREL(x); -} - -wxCoord wxDC::DeviceToLogicalYRel(wxCoord y) const -{ - return YDEV2LOGREL(y); -} - -wxCoord wxDC::LogicalToDeviceX(wxCoord x) const -{ - return XLOG2DEV(x); -} - -wxCoord wxDC::LogicalToDeviceY(wxCoord y) const -{ - return YLOG2DEV(y); -} - -wxCoord wxDC::LogicalToDeviceXRel(wxCoord x) const -{ - return XLOG2DEVREL(x); -} - -wxCoord wxDC::LogicalToDeviceYRel(wxCoord y) const -{ - return YLOG2DEVREL(y); -} - #endif // !wxMAC_USE_CORE_GRAPHICS