summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorMatthias Melcher <git@matthiasm.com>2019-02-02 22:29:53 +0100
committerMatthias Melcher <git@matthiasm.com>2019-02-02 22:29:53 +0100
commitc97990e517adca2d0a8c287bddbdd4761f5965f2 (patch)
tree3aa4c461e7e5b4bf44fdc01c5de8378d933e5639 /FL
parent5cd9f6fb8058f92d9434949caaf089e0b900ce64 (diff)
Removed all shadow lint in header files (STR #2714).
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Scrollbar.H8
1 files changed, 4 insertions, 4 deletions
diff --git a/FL/Fl_Scrollbar.H b/FL/Fl_Scrollbar.H
index c2b9abe08..5563dcce1 100644
--- a/FL/Fl_Scrollbar.H
+++ b/FL/Fl_Scrollbar.H
@@ -76,8 +76,8 @@ public:
Sets the position, size and range of the slider in the scrollbar.
\param[in] pos position, first line displayed
\param[in] windowSize number of lines displayed
- \param[in] first number of first line
- \param[in] total total number of lines
+ \param[in] first_line number of first line
+ \param[in] total_lines total number of lines
You should call this every time your window changes size, your data
changes size, or your scroll position changes (even if in response
@@ -86,8 +86,8 @@ public:
Calls Fl_Slider::scrollvalue(int pos, int size, int first, int total).
*/
- int value(int pos, int windowSize, int first, int total) {
- return scrollvalue(pos, windowSize, first, total);
+ int value(int pos, int windowSize, int first_line, int total_lines) {
+ return scrollvalue(pos, windowSize, first_line, total_lines);
}
/**