]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/gauge.cpp
allowing shaped windows again
[wxWidgets.git] / src / mac / carbon / gauge.cpp
index 19af6c6f41335b01e1b97f092dfbf0c721d186fd..36abf248dce06f070f3e0bd00b6a83d9a43fc1fc 100644 (file)
@@ -45,9 +45,9 @@ bool wxGauge::Create(wxWindow *parent, wxWindowID id,
     }
     
     Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
-    m_macControl = (WXWidget) ::NewControl( MAC_WXHWND(parent->MacGetTopLevelWindowRef()) , &bounds , "\p" , true , 0 , 0 , range
-        kControlProgressBarProc , (long) this ) ;
-    
+    verify_noerr ( CreateProgressBarControl( MAC_WXHWND(parent->MacGetTopLevelWindowRef()) , &bounds 
+     m_gaugePos , 0 , m_rangeMax , false /* not indeterminate */ , (ControlRef*) &m_macControl ) ) ;
+       
     MacPostControlCreate(pos,size) ;
     
     return TRUE;