]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/slider.h
Digital Mars compilation warnings and Unicode fixes (patch 884587)
[wxWidgets.git] / include / wx / mac / slider.h
index 7c49d1ff0ce83c410ee189525317ffec13ba9084..9599a60c10ba14943c24b1dbaa80e195e144490b 100644 (file)
@@ -59,6 +59,9 @@ public:
   inline int GetMin() const { return m_rangeMin; }
   inline int GetMax() const { return m_rangeMax; }
 
+  void SetMin(int minValue) { SetRange(minValue, m_rangeMax); }
+  void SetMax(int maxValue) { SetRange(m_rangeMin, maxValue); }
+    
   // For trackbars only
   void SetTickFreq(int n, int pos);
   inline int GetTickFreq() const { return m_tickFreq; }