git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67871
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
CGContextSaveGState( context );
CGContextSetFillColorWithColor( context, win->GetBackgroundColour().GetCGColor());
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 );
}
CGContextRestoreGState( context );
}