X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/53a2db124c633f80bdb16336084262037d879a2c..e62b7692622880d48b62f555c1e356883232956c:/include/wx/cocoa/slider.h diff --git a/include/wx/cocoa/slider.h b/include/wx/cocoa/slider.h index 32950b547f..5e73aa1796 100644 --- a/include/wx/cocoa/slider.h +++ b/include/wx/cocoa/slider.h @@ -5,7 +5,6 @@ // Mark Oxenham // Modified by: // Created: 2003/06/19 -// RCS-ID: $Id$ // Copyright: (c) 2003 David Elliott // (c) 2007 Software 2000 Ltd. // Licence: wxWindows licence @@ -92,14 +91,16 @@ public: // these methods get/set the length of the slider pointer in pixels virtual void SetThumbLength(int lenPixels); virtual int GetThumbLength() const; - + // copied from (wxSliderCocoa.h) - virtual void SetTickFreq(int n, int pos); virtual int GetTickFreq() const; - virtual void ClearTicks() { SetTickFreq(0, 0); } + virtual void ClearTicks() { SetTickFreq(0); } virtual void SetTickPos(int pos); +protected: + // Platform-specific implementation of SetTickFreq + virtual void DoSetTickFreq(int freq); }; #endif