]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/slider.cpp
applied patch 433352 (fix for wxTextCtrl::SetForegroundColor())
[wxWidgets.git] / src / gtk / slider.cpp
index 6ad996cbfc91828558d9881f03e824d3973f1014..00a061af9ed749a9fbc2a8a47edfb6269cf6a621 100644 (file)
@@ -62,7 +62,7 @@ static void gtk_slider_callback( GtkAdjustment *adjust, wxSlider *win )
     else if (range->scroll_type == GTK_SCROLL_PAGE_FORWARD)  command = wxEVT_SCROLL_PAGEDOWN;
 
     double dvalue = adjust->value;
-    int value = (int)(dvalue >= 0 ? dvalue - 0.5 : dvalue + 0.5);
+    int value = (int)(dvalue < 0 ? dvalue - 0.5 : dvalue + 0.5);
 
     int orient = wxHORIZONTAL;
     if ( (win->GetWindowStyleFlag() & wxSB_VERTICAL) == wxSB_VERTICAL)
@@ -161,7 +161,7 @@ int wxSlider::GetValue() const
     // we want to round to the nearest integer, i.e. 0.9 is rounded to 1 and
     // -0.9 is rounded to -1
     double val = m_adjust->value;
-    return (int)(val >= 0 ? val - 0.5 : val + 0.5);
+    return (int)(val < 0 ? val - 0.5 : val + 0.5);
 }
 
 void wxSlider::SetValue( int value )