Use wxBitmap::GetNSImage() in Cocoa code
Use Cocoa-specific function rather than generically-named GetImage(). No real changes.
This commit is contained in:
@@ -2419,7 +2419,7 @@ void wxMacCoreGraphicsContext::DrawBitmap( const wxBitmap &bmp, wxDouble x, wxDo
|
|||||||
if (EnsureIsValid())
|
if (EnsureIsValid())
|
||||||
{
|
{
|
||||||
CGRect r = CGRectMake( (CGFloat) x , (CGFloat) y , (CGFloat) w , (CGFloat) h );
|
CGRect r = CGRectMake( (CGFloat) x , (CGFloat) y , (CGFloat) w , (CGFloat) h );
|
||||||
wxOSXDrawNSImage( m_cgContext, &r, bmp.GetImage());
|
wxOSXDrawNSImage( m_cgContext, &r, bmp.GetNSImage());
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
wxGraphicsBitmap bitmap = GetRenderer()->CreateBitmap(bmp);
|
wxGraphicsBitmap bitmap = GetRenderer()->CreateBitmap(bmp);
|
||||||
@@ -2482,7 +2482,7 @@ void wxMacCoreGraphicsContext::DrawIcon( const wxIcon &icon, wxDouble x, wxDoubl
|
|||||||
#if wxOSX_USE_COCOA
|
#if wxOSX_USE_COCOA
|
||||||
{
|
{
|
||||||
CGRect r = CGRectMake( (CGFloat) x , (CGFloat) y , (CGFloat) w , (CGFloat) h );
|
CGRect r = CGRectMake( (CGFloat) x , (CGFloat) y , (CGFloat) w , (CGFloat) h );
|
||||||
wxOSXDrawNSImage( m_cgContext, &r, icon.GetImage());
|
wxOSXDrawNSImage( m_cgContext, &r, icon.GetNSImage());
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user