int wxGauge::GetValue() const
{
- return [(NSProgressIndicator*)m_cocoaNSView doubleValue];
+ return (int)[(NSProgressIndicator*)m_cocoaNSView doubleValue];
}
void wxGauge::SetValue(int value)
int wxGauge::GetRange() const
{
- return [(NSProgressIndicator*)m_cocoaNSView maxValue];
+ return (int)[(NSProgressIndicator*)m_cocoaNSView maxValue];
}
void wxGauge::SetRange(int maxValue)