intel pict fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38183 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2006-03-17 18:29:14 +00:00
parent db28a493dd
commit 7358f9073d

View File

@@ -816,6 +816,19 @@ private :
ControlRef wxMacFindControlUnderMouse( wxTopLevelWindowMac* toplevelWindow, const Point& location , WindowRef window , ControlPartCode *outPart ) ; ControlRef wxMacFindControlUnderMouse( wxTopLevelWindowMac* toplevelWindow, const Point& location , WindowRef window , ControlPartCode *outPart ) ;
#if WORDS_BIGENDIAN
inline Rect* wxMacGetPictureBounds( PicHandle pict , Rect* rect )
{
*rect = (**pict).picFrame ;
return rect ;
}
#else
inline Rect* wxMacGetPictureBounds( PicHandle pict , Rect* rect )
{
return QDGetPictureBounds( pict , rect ) ;
}
#endif
#endif // wxUSE_GUI #endif // wxUSE_GUI
#define wxMAC_DEFINE_PROC_GETTER( UPP , x ) \ #define wxMAC_DEFINE_PROC_GETTER( UPP , x ) \