]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/spinbutt.h
fix many doxygen warnings about undocumented parameters
[wxWidgets.git] / interface / wx / spinbutt.h
index 186669d52d700d2b761010fb5138e6409cadb280..b8518c5a5908277bf7a7632a8675c55a610a78ac 100644 (file)
@@ -107,7 +107,7 @@ public:
     /**
         Destructor, destroys the spin button control.
     */
-    ~wxSpinButton();
+    virtual ~wxSpinButton();
 
     /**
         Scrollbar creation function called by the spin button constructor.
@@ -124,21 +124,21 @@ public:
 
         @see SetRange()
     */
-    int GetMax() const;
+    virtual int GetMax() const;
 
     /**
         Returns the minimum permissible value.
 
         @see SetRange()
     */
-    int GetMin() const;
+    virtual int GetMin() const;
 
     /**
         Returns the current spin button value.
 
         @see SetValue()
     */
-    int GetValue() const;
+    virtual int GetValue() const;
 
     /**
         Sets the range of the spin button.
@@ -150,7 +150,7 @@ public:
 
         @see GetMin(), GetMax()
     */
-    void SetRange(int min, int max);
+    virtual void SetRange(int min, int max);
 
     /**
         Sets the value of the spin button.
@@ -158,6 +158,6 @@ public:
         @param value
             The value for the spin button.
     */
-    void SetValue(int value);
+    virtual void SetValue(int value);
 };