summaryrefslogtreecommitdiff
path: root/FL/Fl_Scrollbar.H
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2011-10-02 06:25:13 +0000
committerMatthias Melcher <fltk@matthiasm.com>2011-10-02 06:25:13 +0000
commitc1caad3e62a5621f03047ffe68d985bba94f3fcf (patch)
tree446db7d138da12ada88ca31f4f7008d3bd5655ae /FL/Fl_Scrollbar.H
parente3b758c6f040946cdbdfe2473def2ce14f327873 (diff)
STR 2714: remove lint (variables that have the same name as a function in the same scope).
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9116 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Scrollbar.H')
-rw-r--r--FL/Fl_Scrollbar.H6
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);
}
/**