]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/slider.h
Test using wxString::ToCDouble() in wxAny.
[wxWidgets.git] / include / wx / cocoa / slider.h
index 32950b547ffabca05f955e47679105d7e8291bfc..46a4ef7c40ee73059b954ed3950e135b75607002 100644 (file)
@@ -92,14 +92,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