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_Input_Choice.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_Input_Choice.H')
| -rw-r--r-- | FL/Fl_Input_Choice.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Input_Choice.H b/FL/Fl_Input_Choice.H index 8c503fbbb..a6381c79c 100644 --- a/FL/Fl_Input_Choice.H +++ b/FL/Fl_Input_Choice.H @@ -56,8 +56,8 @@ class FL_EXPORT Fl_Input_Choice : public Fl_Group { if (Fl::focus() == this) draw_focus(); } public: - InputMenuButton(int x,int y,int w,int h,const char*l=0) : - Fl_Menu_Button(x,y,w,h,l) { box(FL_UP_BOX); } + InputMenuButton(int X,int Y,int W,int H,const char*L=0) : + Fl_Menu_Button(X, Y, W, H, L) { box(FL_UP_BOX); } }; Fl_Input *inp_; @@ -128,7 +128,7 @@ public: and label string. <P> Inherited destructor Destroys the widget and any value associated with it. */ - Fl_Input_Choice (int x,int y,int w,int h,const char*l=0) : Fl_Group(x,y,w,h,l) { + Fl_Input_Choice (int X,int Y,int W,int H,const char*L=0) : Fl_Group(X,Y,W,H,L) { Fl_Group::box(FL_DOWN_BOX); align(FL_ALIGN_LEFT); // default like Fl_Input inp_ = new Fl_Input(inp_x(), inp_y(), |
