]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/utils.cpp
Compile fixes.
[wxWidgets.git] / src / mac / carbon / utils.cpp
index 4d40792ae23e715313ee5623c1742e35851866ad..cf7d76b624b031ab9fcd4e9f1d2e882d764c5a53 100644 (file)
@@ -523,7 +523,7 @@ wxString wxMacFindFolder( short        vol,
     wxString strDir ;
 
     if ( FSFindFolder( vol, folderType, createFolder, &fsRef) == noErr)
-        strDir = wxMacFSRefToPath( &fsRef ) ;
+        strDir = wxMacFSRefToPath( &fsRef ) + wxFILE_SEP_PATH ;
 
     return strDir ;
 }
@@ -1706,7 +1706,9 @@ void  wxMacControl::Convert( wxPoint *pt , wxMacControl *from , wxMacControl *to
 void wxMacControl::SetRect( Rect *r ) 
 {
 #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 ) ;
 #else
     SetControlBounds( m_controlRef , r ) ;