git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38168
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// ownership is transferred to the bitmap
m_pictCreated = false;
// ownership is transferred to the bitmap
m_pictCreated = false;
- Rect frame = (**picHandle).picFrame;
+ Rect frame ;
+ wxMacGetPictureBounds( picHandle , &frame ) ;
wxMetafile mf;
mf.SetHMETAFILE( (WXHMETAFILE)m_pictHandle );
wxMetafile mf;
mf.SetHMETAFILE( (WXHMETAFILE)m_pictHandle );
#else
PicHandle pict = (PicHandle) GetHMETAFILE();
wxMacPortSetter helper( dc );
#else
PicHandle pict = (PicHandle) GetHMETAFILE();
wxMacPortSetter helper( dc );
- DrawPicture( pict , &(**pict).picFrame );
+ Rect picFrame ;
+ DrawPicture( pict , wxMacGetPictureBounds( pict , &picFrame ) );
if ( Ok() )
{
PicHandle pict = (PicHandle) GetHMETAFILE() ;
if ( Ok() )
{
PicHandle pict = (PicHandle) GetHMETAFILE() ;
- Rect &r = (**pict).picFrame ;
+ Rect r ;
+ wxMacGetPictureBounds( pict , &r ) ;
size.x = r.right - r.left ;
size.y = r.bottom - r.top ;
}
size.x = r.right - r.left ;
size.y = r.bottom - r.top ;
}