Skip to content

Commit

Permalink
Eliminate shadowed arguments...
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3855 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
michaelrsweet committed Sep 29, 2004
1 parent ba00ff1 commit f7fd28d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions FL/Fl_Multi_Browser.H
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Multi_Browser.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
// "$Id: Fl_Multi_Browser.H,v 1.4.2.3.2.4 2004/09/29 15:05:48 easysw Exp $"
//
// Multi browser header file for the Fast Light Tool Kit (FLTK).
//
Expand Down Expand Up @@ -30,12 +30,12 @@

class Fl_Multi_Browser : public Fl_Browser {
public:
Fl_Multi_Browser(int x,int y,int w,int h,const char *l=0)
: Fl_Browser(x,y,w,h,l) {type(FL_MULTI_BROWSER);}
Fl_Multi_Browser(int X,int Y,int W,int H,const char *L=0)
: Fl_Browser(X,Y,W,H,L) {type(FL_MULTI_BROWSER);}
};

#endif

//
// End of "$Id: Fl_Multi_Browser.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $".
// End of "$Id: Fl_Multi_Browser.H,v 1.4.2.3.2.4 2004/09/29 15:05:48 easysw Exp $".
//

0 comments on commit f7fd28d

Please sign in to comment.