From 9c891bce206e718ac81e65b2dde0435367d1107b Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sun, 3 Jun 2007 11:01:00 +0000 Subject: [PATCH] coordinate adjustment not needed here anymore git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@46294 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/dcmemory.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/mac/carbon/dcmemory.cpp b/src/mac/carbon/dcmemory.cpp index 975ce8b4e6..cdcfcc1de3 100644 --- a/src/mac/carbon/dcmemory.cpp +++ b/src/mac/carbon/dcmemory.cpp @@ -81,10 +81,6 @@ void wxMemoryDC::DoSelect( const wxBitmap& bitmap ) { CGContextSetFillColorSpace( bmCtx, genericColorSpace ); CGContextSetStrokeColorSpace( bmCtx, genericColorSpace ); - - CGContextTranslateCTM( bmCtx , 0 , m_selected.GetHeight() ) ; - CGContextScaleCTM( bmCtx , 1 , -1 ) ; - SetGraphicsContext( wxGraphicsContext::CreateFromNative( bmCtx ) ); } m_ok = (m_graphicContext != NULL) ;