From a4eac7660cff80f6449e4ecb9496693a51ad91d7 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 16 May 2013 17:57:01 +0000 Subject: [PATCH] Add docs for SetMin and SetMax git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74012 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/slider.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/interface/wx/slider.h b/interface/wx/slider.h index eaf88adb7e..a0b8b57ff7 100644 --- a/interface/wx/slider.h +++ b/interface/wx/slider.h @@ -296,6 +296,27 @@ public: */ virtual void SetLineSize(int lineSize); + + /** + Sets the minimum slider value. + + @param minValue + The new bottom end of the slider range. + + @see GetMin(), SetRange() + */ + void SetMin( int minValue ); + + /** + Sets the maximum slider value. + + @param maxValue + The new top end of the slider range. + + @see GetMax(), SetRange() + */ + void SetMax( int maxValue ); + /** Sets the page size for the slider. -- 2.47.2