]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/spinbutt.cpp
Fixed wxApp::OnAssert signature.
[wxWidgets.git] / src / mac / spinbutt.cpp
index a647fbef1f68eb151eab604a9c5fbb671a5538db..fd9d5d4e4772b4b9e7f5cde911b1be538d609136 100644 (file)
@@ -118,9 +118,9 @@ void wxSpinButton::MacHandleValueChanged( int inc )
       m_value = m_max;
     }
 
-    if ( oldValue - m_value == -1 )
+    if ( m_value - oldValue == -1 )
         scrollEvent = wxEVT_SCROLL_LINEDOWN ;
-    else if ( oldValue - m_value == 1 )
+    else if ( m_value - oldValue == 1 )
         scrollEvent = wxEVT_SCROLL_LINEUP ;
     else
         scrollEvent = wxEVT_SCROLL_THUMBTRACK ;