From: Stefan Csomor Date: Mon, 6 Jun 2011 21:13:33 +0000 (+0000) Subject: 10.4 compatibility X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a3c222122dfb084bb6823972d744f8bd6e5eaed4 10.4 compatibility git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/cocoa/window.mm b/src/osx/cocoa/window.mm index aba5751431..1bea54aed2 100644 --- a/src/osx/cocoa/window.mm +++ b/src/osx/cocoa/window.mm @@ -812,7 +812,8 @@ void wxOSX_drawRect(NSView* self, SEL _cmd, NSRect rect) CGContextSaveGState( context ); CGContextSetFillColorWithColor( context, win->GetBackgroundColour().GetCGColor()); - CGContextFillRect( context, NSRectToCGRect(rect) ); + CGRect r = CGRectMake(rect.origin.x, rect.origin.y, rect.size.width, rect.size.height); + CGContextFillRect( context, r ); CGContextRestoreGState( context ); }