+bool wxSpinButton::OS2OnScroll(int orientation, WXWORD wParam,
+ WXWORD pos, WXHWND control)
+{
+ wxCHECK_MSG( control, FALSE, wxT("scrolling what?") )
+// TODO:
+/*
+ if ( wParam != SB_THUMBPOSITION )
+ {
+ // probable SB_ENDSCROLL - we don't react to it
+ return FALSE;
+ }
+
+ wxSpinEvent event(wxEVT_SCROLL_THUMBTRACK, m_windowId);
+ event.SetPosition((short)pos); // cast is important for negative values!
+ event.SetEventObject(this);
+
+ return GetEventHandler()->ProcessEvent(event);
+*/
+ return FALSE;
+}