diff options
| author | Fabien Costantini <fabien@onepost.net> | 2008-09-15 12:46:49 +0000 |
|---|---|---|
| committer | Fabien Costantini <fabien@onepost.net> | 2008-09-15 12:46:49 +0000 |
| commit | 09f3094aef152ece5bf802983d54f1642d803e0d (patch) | |
| tree | e59f10539bf9709ed3a236e05d98605150add316 /FL/Fl_Valuator.H | |
| parent | 730dc6367d0970f56b3bd4e0b3bd6842ffa27443 (diff) | |
Doxygen documentation WP10 Done. Reserved WP11.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6254 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Valuator.H')
| -rw-r--r-- | FL/Fl_Valuator.H | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/FL/Fl_Valuator.H b/FL/Fl_Valuator.H index 7b0446c95..5df930c72 100644 --- a/FL/Fl_Valuator.H +++ b/FL/Fl_Valuator.H @@ -71,19 +71,16 @@ protected: public: - /** - Sets the minimum (a) and maximum (b) values for - the valuator widget. - */ + /** Sets the minimum (a) and maximum (b) values for the valuator widget. */ void bounds(double a, double b) {min=a; max=b;} - /** Gets or sets the minimum value for the valuator. */ + /** Gets the minimum value for the valuator. */ double minimum() const {return min;} - /** Gets or sets the minimum value for the valuator. */ + /** Sets the minimum value for the valuator. */ void minimum(double a) {min = a;} - /** Gets or sets the maximum value for the valuator. */ - double maximum() const {return max;} - /** Gets or sets the maximum value for the valuator. */ - void maximum(double a) {max = a;} + /** Gets the maximum value for the valuator. */ + double maximum() const {return max;} + /** Sets the maximum value for the valuator. */ + void maximum(double a) {max = a;} /** Sets the minimum and maximum values for the valuator. When the user manipulates the widget, the value is limited to this |
