]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed SetRange/GetValue
authorKarsten Ballüder <ballueder@usa.net>
Wed, 15 Jul 1998 14:37:42 +0000 (14:37 +0000)
committerKarsten Ballüder <ballueder@usa.net>
Wed, 15 Jul 1998 14:37:42 +0000 (14:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@273 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/gauge.cpp
src/gtk1/gauge.cpp

index 786bdac7b0e0555fd669a5e2765e07d32ec71596..905423d78ae4a71125ee20980380095266b03b84 100644 (file)
@@ -48,7 +48,7 @@ void wxGauge::SetRange( int r )
   m_rangeMax = r;
   if (m_gaugePos > m_rangeMax) m_gaugePos = m_rangeMax;
   
   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 )
 };
 
 void wxGauge::SetValue( int pos )
@@ -56,7 +56,7 @@ void wxGauge::SetValue( int pos )
   m_gaugePos = pos;
   if (m_gaugePos > m_rangeMax) m_gaugePos = m_rangeMax;
   
   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
 };
 
 int wxGauge::GetRange(void) const
index 786bdac7b0e0555fd669a5e2765e07d32ec71596..905423d78ae4a71125ee20980380095266b03b84 100644 (file)
@@ -48,7 +48,7 @@ void wxGauge::SetRange( int r )
   m_rangeMax = r;
   if (m_gaugePos > m_rangeMax) m_gaugePos = m_rangeMax;
   
   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 )
 };
 
 void wxGauge::SetValue( int pos )
@@ -56,7 +56,7 @@ void wxGauge::SetValue( int pos )
   m_gaugePos = pos;
   if (m_gaugePos > m_rangeMax) m_gaugePos = m_rangeMax;
   
   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
 };
 
 int wxGauge::GetRange(void) const