Deprecate second parameter of wxSlider::SetTickFreq().

This parameter was never needed nor properly documented. Simply remove it from
SetTickFreq() and keep the overload still taking it for backwards
compatibility only.

Closes #12907.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66844 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-02-05 16:36:30 +00:00
parent c20389eb5f
commit 0a12e013f5
18 changed files with 41 additions and 26 deletions

View File

@@ -59,7 +59,6 @@ public:
void SetMax(int maxValue) { SetRange(m_rangeMin, maxValue); }
// For trackbars only
void SetTickFreq(int n, int pos);
inline int GetTickFreq() const { return m_tickFreq; }
void SetPageSize(int pageSize);
int GetPageSize() const ;
@@ -81,6 +80,9 @@ public:
virtual void TriggerScrollEvent( wxEventType scrollEvent ) ;
protected:
// Platform-specific implementation of SetTickFreq
virtual void DoSetTickFreq(int freq);
virtual wxSize DoGetBestSize() const;
virtual void DoSetSize(int x, int y, int w, int h, int sizeFlags);
virtual void DoMoveWindow(int x, int y, int w, int h);