diff options
Diffstat (limited to 'FL/Fl_Scrollbar.H')
| -rw-r--r-- | FL/Fl_Scrollbar.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Scrollbar.H b/FL/Fl_Scrollbar.H index 8138bc9c3..c2b9abe08 100644 --- a/FL/Fl_Scrollbar.H +++ b/FL/Fl_Scrollbar.H @@ -75,7 +75,7 @@ public: /** Sets the position, size and range of the slider in the scrollbar. \param[in] pos position, first line displayed - \param[in] size window size, number of lines displayed + \param[in] windowSize number of lines displayed \param[in] first number of first line \param[in] total total number of lines @@ -86,8 +86,8 @@ public: Calls Fl_Slider::scrollvalue(int pos, int size, int first, int total). */ - int value(int pos, int size, int first, int total) { - return scrollvalue(pos, size, first, total); + int value(int pos, int windowSize, int first, int total) { + return scrollvalue(pos, windowSize, first, total); } /** |
