X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/409c9842c71df526bcfbf1cf5ce80067b09d4d97..72c71d39724af116d419295b684dd2946efb3da3:/src/os2/slider.cpp diff --git a/src/os2/slider.cpp b/src/os2/slider.cpp index 9dee621c51..c0d6c909bb 100644 --- a/src/os2/slider.cpp +++ b/src/os2/slider.cpp @@ -25,7 +25,6 @@ #include "wx/slider.h" #include "wx/os2/private.h" -#if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxSlider, wxControl) // Slider @@ -45,11 +44,15 @@ bool wxSlider::Create(wxWindow *parent, wxWindowID id, int value, int minValue, int maxValue, const wxPoint& pos, const wxSize& size, long style, +#if wxUSE_VALIDATORS const wxValidator& validator, +#endif const wxString& name) { SetName(name); +#if wxUSE_VALIDATORS SetValidator(validator); +#endif if (parent) parent->AddChild(this); @@ -140,6 +143,7 @@ bool wxSlider::OS2OnScroll(int WXUNUSED(orientation), WXWORD wParam, return TRUE; } */ + int newPos = 0; //temporary SetValue(newPos); wxScrollEvent event(scrollEvent, m_windowId);