Rect bounds ;
Str255 title ;
m_rangeMax = range ;
+ m_gaugePos = 0 ;
if ( size.x == wxDefaultSize.x && size.y == wxDefaultSize.y)
{
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