]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/slider.h
Remove use of "size-request" signal for wxWindow sizing.
[wxWidgets.git] / include / wx / cocoa / slider.h
index 0b5e20df709ca80b81acd09224b783ff5f0c7e29..46a4ef7c40ee73059b954ed3950e135b75607002 100644 (file)
@@ -94,12 +94,14 @@ public:
     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