]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/spinbutt.cpp
Ok, so we don't need the extra bool at all, we can just zero the sizer
[wxWidgets.git] / src / mac / spinbutt.cpp
index fd9d5d4e4772b4b9e7f5cde911b1be538d609136..08151678acd3e7fd2a8f7e2248a6d581e871ef43 100644 (file)
@@ -90,8 +90,8 @@ void wxSpinButton::SetRange(int minVal, int maxVal)
 {
        m_min = minVal;
        m_max = maxVal;
-    SetControlMaximum( (ControlHandle) m_macControl , maxVal ) ;
-    SetControlMinimum((ControlHandle) m_macControl , minVal ) ;
+    SetControl32BitMaximum( (ControlHandle) m_macControl , maxVal ) ;
+    SetControl32BitMinimum((ControlHandle) m_macControl , minVal ) ;
 }
 
 void wxSpinButton::MacHandleValueChanged( int inc )
@@ -134,7 +134,7 @@ void wxSpinButton::MacHandleValueChanged( int inc )
     {
         m_value = oldValue ;
     }
-    SetControlValue( (ControlHandle) m_macControl , m_value ) ;
+    SetControl32BitValue( (ControlHandle) m_macControl , m_value ) ;
 
     /* always send a thumbtrack event */
     if (scrollEvent != wxEVT_SCROLL_THUMBTRACK)