partial aggregate warning fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29325 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton
2004-09-24 21:33:21 +00:00
parent 6028be3f39
commit af4fc79bd4

View File

@@ -1706,7 +1706,9 @@ void wxMacControl::Convert( wxPoint *pt , wxMacControl *from , wxMacControl *to
void wxMacControl::SetRect( Rect *r ) void wxMacControl::SetRect( Rect *r )
{ {
#if TARGET_API_MAC_OSX #if TARGET_API_MAC_OSX
HIRect hir = { r->left , r->top , r->right - r->left , r->bottom - r->top } ; //A HIRect is actually a CGRect on OSX - which consists of two structures -
//CGPoint and CGSize, which have two floats each
HIRect hir = { { r->left , r->top }, { r->right - r->left , r->bottom - r->top } } ;
HIViewSetFrame ( m_controlRef , &hir ) ; HIViewSetFrame ( m_controlRef , &hir ) ;
#else #else
SetControlBounds( m_controlRef , r ) ; SetControlBounds( m_controlRef , r ) ;