X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5c2e93769956ec4a3ff1c6f02f8c2b492a13febd..6056c7c6f31de099172165ae97784e1a426c758e:/include/wx/slider.h diff --git a/include/wx/slider.h b/include/wx/slider.h index 8cd9a9dd1c..09cd35c8b5 100644 --- a/include/wx/slider.h +++ b/include/wx/slider.h @@ -42,6 +42,7 @@ public: const wxValidator& validator = wxDefaultValidator, const wxString& name = wxSliderNameStr); */ + wxSliderBase() { } // get/set the current slider value (should be in range) virtual int GetValue() const = 0; @@ -76,6 +77,9 @@ public: virtual int GetSelEnd() const { return GetMin(); } virtual int GetSelStart() const { return GetMax(); } virtual void SetSelection(int WXUNUSED(min), int WXUNUSED(max)) { } + +private: + DECLARE_NO_COPY_CLASS(wxSliderBase) }; // ----------------------------------------------------------------------------