From c1caad3e62a5621f03047ffe68d985bba94f3fcf Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sun, 2 Oct 2011 06:25:13 +0000 Subject: 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 --- FL/Fl_Scroll.H | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'FL/Fl_Scroll.H') diff --git a/FL/Fl_Scroll.H b/FL/Fl_Scroll.H index 00c1fb6cd..5b6380bfc 100644 --- a/FL/Fl_Scroll.H +++ b/FL/Fl_Scroll.H @@ -177,9 +177,9 @@ public: If 0 (default), scrollbar size tracks the global Fl::scrollbar_size() \see Fl::scrollbar_size() */ - void scrollbar_size(int size) { - if ( size != scrollbar_size_ ) redraw(); - scrollbar_size_ = size; + void scrollbar_size(int newSize) { + if ( newSize != scrollbar_size_ ) redraw(); + scrollbar_size_ = newSize; } }; -- cgit v1.2.3