]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/gauge.cpp
added missing wxMacPortSetter helper(this) calls
[wxWidgets.git] / src / mac / gauge.cpp
index cdaaf58a715b3e6c133fbd58681a322139af3a84..b367d44393e43b6a2f41b4ae19f3c7c713758504 100644 (file)
@@ -33,6 +33,7 @@ bool wxGauge::Create(wxWindow *parent, wxWindowID id,
        Rect bounds ;
        Str255 title ;
        m_rangeMax = range ;
+       m_gaugePos = 0 ;
        
        if ( size.x == wxDefaultSize.x && size.y == wxDefaultSize.y)
        {
@@ -60,13 +61,13 @@ void wxGauge::SetBezelFace(int w)
 void wxGauge::SetRange(int r)
 {
     m_rangeMax = r;
-    ::SetControlMaximum( (ControlHandle) m_macControl , m_rangeMax ) ;
+    ::SetControl32BitMaximum( (ControlHandle) m_macControl , m_rangeMax ) ;
 }
 
 void wxGauge::SetValue(int pos)
 {
     m_gaugePos = pos;
-       ::SetControlValue( (ControlHandle) m_macControl , m_gaugePos ) ;
+       ::SetControl32BitValue( (ControlHandle) m_macControl , m_gaugePos ) ;
 }
 
 int wxGauge::GetShadowWidth() const