X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..2a45803fc3877afd0ae3ce356dfe216505165882:/include/wx/os2/slider.h diff --git a/include/wx/os2/slider.h b/include/wx/os2/slider.h index 24dbb5aebf..05fc54887e 100644 --- a/include/wx/os2/slider.h +++ b/include/wx/os2/slider.h @@ -1,12 +1,12 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: slider.h +// Name: wx/os2/slider.h // Purpose: wxSlider class // Author: David Webster // Modified by: // Created: 10/15/99 // RCS-ID: $Id$ // Copyright: (c) David Webster -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_SLIDER_H_ @@ -15,7 +15,7 @@ #include "wx/control.h" // Slider -class WXDLLEXPORT wxSlider: public wxSliderBase +class WXDLLIMPEXP_CORE wxSlider: public wxSliderBase { public: wxSlider(); @@ -43,7 +43,7 @@ public: ,rsName ); } - ~wxSlider(); + virtual ~wxSlider(); bool Create( wxWindow* pParent ,wxWindowID vId @@ -94,9 +94,6 @@ public: ); void SetThumbLength(int nLen) ; void SetTick(int ntickPos) ; - void SetTickFreq( int n - ,int nPos - ); // // IMPLEMENTATION @@ -148,6 +145,10 @@ protected: ,int nHeight ,int nSizeFlags = wxSIZE_AUTO ); + + // Platform-specific implementation of SetTickFreq + virtual void DoSetTickFreq(int freq); + private: DECLARE_DYNAMIC_CLASS(wxSlider) }; // end of CLASS wxSlider