X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/debe6624c1e9d4bf3243381153d1e173c849bcd8..f6d5397840a7cfe694c6c82b8f560e7b27978d25:/src/gtk1/gauge.cpp diff --git a/src/gtk1/gauge.cpp b/src/gtk1/gauge.cpp index 786bdac7b0..7230b92816 100644 --- a/src/gtk1/gauge.cpp +++ b/src/gtk1/gauge.cpp @@ -26,8 +26,6 @@ bool wxGauge::Create( wxWindow *parent, wxWindowID id, int range, { m_needParent = TRUE; - wxSize newSize = size; - PreCreation( parent, id, pos, size, style, name ); m_rangeMax = range; @@ -48,7 +46,7 @@ void wxGauge::SetRange( int r ) m_rangeMax = r; if (m_gaugePos > m_rangeMax) m_gaugePos = m_rangeMax; - gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget), (float)(m_rangeMax/m_gaugePos) ); + gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget), ((float)m_gaugePos)/m_rangeMax ); }; void wxGauge::SetValue( int pos ) @@ -56,7 +54,7 @@ void wxGauge::SetValue( int pos ) m_gaugePos = pos; if (m_gaugePos > m_rangeMax) m_gaugePos = m_rangeMax; - gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget), (float)(m_rangeMax/m_gaugePos) ); + gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget), ((float)m_gaugePos)/m_rangeMax ); }; int wxGauge::GetRange(void) const