diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2011-10-02 06:25:13 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2011-10-02 06:25:13 +0000 |
| commit | c1caad3e62a5621f03047ffe68d985bba94f3fcf (patch) | |
| tree | 446db7d138da12ada88ca31f4f7008d3bd5655ae /FL/Fl_Browser_.H | |
| parent | e3b758c6f040946cdbdfe2473def2ce14f327873 (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_Browser_.H')
| -rw-r--r-- | FL/Fl_Browser_.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Browser_.H b/FL/Fl_Browser_.H index e7103a688..7b5620160 100644 --- a/FL/Fl_Browser_.H +++ b/FL/Fl_Browser_.H @@ -283,7 +283,7 @@ public: /** Sets the default text size (in pixels) for the lines in the browser to \p size. */ - void textsize(Fl_Fontsize size) { textsize_ = size; } + void textsize(Fl_Fontsize newSize) { textsize_ = newSize; } /** Gets the default text color for the lines in the browser. @@ -325,8 +325,8 @@ public: If 0 (default), scrollbar size tracks the global Fl::scrollbar_size() \see Fl::scrollbar_size() */ - void scrollbar_size(int size) { - scrollbar_size_ = size; + void scrollbar_size(int newSize) { + scrollbar_size_ = newSize; } /** This method has been deprecated, existing for backwards compatibility only. |
