diff options
| -rw-r--r-- | FL/Fl_Counter.H | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/FL/Fl_Counter.H b/FL/Fl_Counter.H index 2b47d0780..4ea22a567 100644 --- a/FL/Fl_Counter.H +++ b/FL/Fl_Counter.H @@ -88,12 +88,18 @@ public: \param[in] a, b normal and large step increments. */ void step(double a,double b) {Fl_Valuator::step(a); lstep_ = b;} + /** Sets the increment for the normal step buttons. \param[in] a normal step increment. */ void step(double a) {Fl_Valuator::step(a);} + /** + Returns the increment for normal step buttons. + */ + double step() {return Fl_Valuator::step();} + /** Gets the text font */ Fl_Font textfont() const {return textfont_;} /** Sets the text font to \a s */ |
