X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/76a5e5d21ee1a6230d777ce0209b2df4c6075f0f..48d2ab90ee02b7e2441f33fa8575bf51f56a364e:/src/mac/gauge.cpp diff --git a/src/mac/gauge.cpp b/src/mac/gauge.cpp index cdaaf58a71..b367d44393 100644 --- a/src/mac/gauge.cpp +++ b/src/mac/gauge.cpp @@ -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