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
This commit is contained in:
Matthias Melcher 2011-10-02 06:25:13 +00:00
parent e3b758c6f0
commit c1caad3e62
14 changed files with 50 additions and 50 deletions

View File

@ -283,7 +283,7 @@ public:
/** /**
Sets the default text size (in pixels) for the lines in the browser to \p size. 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. 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() If 0 (default), scrollbar size tracks the global Fl::scrollbar_size()
\see Fl::scrollbar_size() \see Fl::scrollbar_size()
*/ */
void scrollbar_size(int size) { void scrollbar_size(int newSize) {
scrollbar_size_ = size; scrollbar_size_ = newSize;
} }
/** /**
This method has been deprecated, existing for backwards compatibility only. This method has been deprecated, existing for backwards compatibility only.

View File

@ -364,7 +364,7 @@ public:
static const char *class_id; static const char *class_id;
virtual const char *class_name() {return class_id;}; virtual const char *class_name() {return class_id;};
/** \brief see fl_font(Fl_Font face, Fl_Fontsize size). */ /** \brief see fl_font(Fl_Font face, Fl_Fontsize size). */
virtual void font(Fl_Font face, Fl_Fontsize size) {font_ = face; size_ = size;} virtual void font(Fl_Font face, Fl_Fontsize fsize) {font_ = face; size_ = fsize;}
/** \brief see fl_font(void). */ /** \brief see fl_font(void). */
Fl_Font font() {return font_; } Fl_Font font() {return font_; }
/** \brief see fl_size(). */ /** \brief see fl_size(). */
@ -529,8 +529,8 @@ public:
class FL_EXPORT Fl_Device_Plugin : public Fl_Plugin { class FL_EXPORT Fl_Device_Plugin : public Fl_Plugin {
public: public:
/** \brief The constructor */ /** \brief The constructor */
Fl_Device_Plugin(const char *name) Fl_Device_Plugin(const char *pluginName)
: Fl_Plugin(klass(), name) { } : Fl_Plugin(klass(), pluginName) { }
/** \brief Returns the class name */ /** \brief Returns the class name */
virtual const char *klass() { return "fltk:device"; } virtual const char *klass() { return "fltk:device"; }
/** \brief Returns the plugin name */ /** \brief Returns the plugin name */

View File

@ -375,8 +375,8 @@ public:
If 0 (default), scrollbar size tracks the global Fl::scrollbar_size() If 0 (default), scrollbar size tracks the global Fl::scrollbar_size()
\see Fl::scrollbar_size() \see Fl::scrollbar_size()
*/ */
void scrollbar_size(int size) { void scrollbar_size(int newSize) {
scrollbar_size_ = size; scrollbar_size_ = newSize;
} }
}; };

View File

@ -202,7 +202,7 @@ protected:
/** \internal Vertical offset of text to top edge of widget. */ /** \internal Vertical offset of text to top edge of widget. */
int yscroll() const {return yscroll_;} int yscroll() const {return yscroll_;}
void yscroll(int y) { yscroll_ = y; damage(FL_DAMAGE_EXPOSE);} void yscroll(int yOffset) { yscroll_ = yOffset; damage(FL_DAMAGE_EXPOSE);}
/* Return the number of lines displayed on a single page. */ /* Return the number of lines displayed on a single page. */
int linesPerPage(); int linesPerPage();

View File

@ -56,8 +56,8 @@ class FL_EXPORT Fl_Input_Choice : public Fl_Group {
if (Fl::focus() == this) draw_focus(); if (Fl::focus() == this) draw_focus();
} }
public: public:
InputMenuButton(int x,int y,int w,int h,const char*l=0) : 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_Menu_Button(X, Y, W, H, L) { box(FL_UP_BOX); }
}; };
Fl_Input *inp_; Fl_Input *inp_;
@ -128,7 +128,7 @@ public:
and label string. and label string.
<P> Inherited destructor Destroys the widget and any value associated with it. <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); Fl_Group::box(FL_DOWN_BOX);
align(FL_ALIGN_LEFT); // default like Fl_Input align(FL_ALIGN_LEFT); // default like Fl_Input
inp_ = new Fl_Input(inp_x(), inp_y(), inp_ = new Fl_Input(inp_x(), inp_y(),

View File

@ -184,9 +184,9 @@ class Clip {
void draw_image(Fl_Draw_Image_Cb call, void* data, int x,int y, int w, int h, int delta=3); void draw_image(Fl_Draw_Image_Cb call, void* data, int x,int y, int w, int h, int delta=3);
void draw_image_mono(Fl_Draw_Image_Cb call, void* data, int x,int y, int w, int h, int delta=1); void draw_image_mono(Fl_Draw_Image_Cb call, void* data, int x,int y, int w, int h, int delta=1);
void draw(const char* s, int n, int x, int y) {transformed_draw(s,n,x,y); }; void draw(const char* s, int nBytes, int x, int y) {transformed_draw(s,nBytes,x,y); };
#ifdef __APPLE__ #ifdef __APPLE__
void draw(const char* s, int n, float x, float y) {transformed_draw(s,n,x,y); }; void draw(const char* s, int nBytes, float x, float y) {transformed_draw(s,nBytes,x,y); };
#endif #endif
void draw(int angle, const char *str, int n, int x, int y); void draw(int angle, const char *str, int n, int x, int y);
void rtl_draw(const char* s, int n, int x, int y); void rtl_draw(const char* s, int n, int x, int y);

View File

@ -26,8 +26,8 @@
class FL_EXPORT Fl_Radio_Button : public Fl_Button { class FL_EXPORT Fl_Radio_Button : public Fl_Button {
public: public:
Fl_Radio_Button(int x,int y,int w,int h,const char *l=0) Fl_Radio_Button(int X,int Y,int W,int H,const char *L=0)
: Fl_Button(x,y,w,h,l) {type(FL_RADIO_BUTTON);} : Fl_Button(X, Y, W, H, L) {type(FL_RADIO_BUTTON);}
}; };
#endif #endif

View File

@ -28,8 +28,8 @@
class FL_EXPORT Fl_Round_Clock : public Fl_Clock { class FL_EXPORT Fl_Round_Clock : public Fl_Clock {
public: public:
/** Creates the clock widget, setting his type and box. */ /** Creates the clock widget, setting his type and box. */
Fl_Round_Clock(int x,int y,int w,int h, const char *l = 0) Fl_Round_Clock(int X,int Y,int W,int H, const char *L = 0)
: Fl_Clock(x,y,w,h,l) {type(FL_ROUND_CLOCK); box(FL_NO_BOX);} : Fl_Clock(X, Y, W, H, L) {type(FL_ROUND_CLOCK); box(FL_NO_BOX);}
}; };
#endif #endif

View File

@ -177,9 +177,9 @@ public:
If 0 (default), scrollbar size tracks the global Fl::scrollbar_size() If 0 (default), scrollbar size tracks the global Fl::scrollbar_size()
\see Fl::scrollbar_size() \see Fl::scrollbar_size()
*/ */
void scrollbar_size(int size) { void scrollbar_size(int newSize) {
if ( size != scrollbar_size_ ) redraw(); if ( newSize != scrollbar_size_ ) redraw();
scrollbar_size_ = size; scrollbar_size_ = newSize;
} }
}; };

View File

@ -75,7 +75,7 @@ public:
/** /**
Sets the position, size and range of the slider in the scrollbar. Sets the position, size and range of the slider in the scrollbar.
\param[in] pos position, first line displayed \param[in] pos position, first line displayed
\param[in] size window size, number of lines displayed \param[in] windowSize number of lines displayed
\param[in] first number of first line \param[in] first number of first line
\param[in] total total number of lines \param[in] total total number of lines
@ -86,8 +86,8 @@ public:
Calls Fl_Slider::scrollvalue(int pos, int size, int first, int total). Calls Fl_Slider::scrollvalue(int pos, int size, int first, int total).
*/ */
int value(int pos, int size, int first, int total) { int value(int pos, int windowSize, int first, int total) {
return scrollvalue(pos, size, first, total); return scrollvalue(pos, windowSize, first, total);
} }
/** /**

View File

@ -449,19 +449,19 @@ protected:
void damage_zone(int r1, int c1, int r2, int c2, int r3 = 0, int c3 = 0); void damage_zone(int r1, int c1, int r2, int c2, int r3 = 0, int c3 = 0);
void redraw_range(int toprow, int botrow, int leftcol, int rightcol) { void redraw_range(int topRow, int botRow, int leftCol, int rightCol) {
if ( _redraw_toprow == -1 ) { if ( _redraw_toprow == -1 ) {
// Initialize redraw range // Initialize redraw range
_redraw_toprow = toprow; _redraw_toprow = topRow;
_redraw_botrow = botrow; _redraw_botrow = botRow;
_redraw_leftcol = leftcol; _redraw_leftcol = leftCol;
_redraw_rightcol = rightcol; _redraw_rightcol = rightCol;
} else { } else {
// Extend redraw range // Extend redraw range
if ( toprow < _redraw_toprow ) _redraw_toprow = toprow; if ( topRow < _redraw_toprow ) _redraw_toprow = topRow;
if ( botrow > _redraw_botrow ) _redraw_botrow = botrow; if ( botRow > _redraw_botrow ) _redraw_botrow = botRow;
if ( leftcol < _redraw_leftcol ) _redraw_leftcol = leftcol; if ( leftCol < _redraw_leftcol ) _redraw_leftcol = leftCol;
if ( rightcol > _redraw_rightcol ) _redraw_rightcol = rightcol; if ( rightCol > _redraw_rightcol ) _redraw_rightcol = rightCol;
} }
// Indicate partial redraw needed of some cells // Indicate partial redraw needed of some cells
@ -852,25 +852,25 @@ public:
table->init_sizes(); table->init_sizes();
table->redraw(); table->redraw();
} }
void add(Fl_Widget& w) { void add(Fl_Widget& wgt) {
table->add(w); table->add(wgt);
if ( table->children() > 2 ) { if ( table->children() > 2 ) {
table->show(); table->show();
} else { } else {
table->hide(); table->hide();
} }
} }
void add(Fl_Widget* w) { void add(Fl_Widget* wgt) {
add(*w); add(*wgt);
} }
void insert(Fl_Widget& w, int n) { void insert(Fl_Widget& wgt, int n) {
table->insert(w,n); table->insert(wgt,n);
} }
void insert(Fl_Widget& w, Fl_Widget* w2) { void insert(Fl_Widget& wgt, Fl_Widget* w2) {
table->insert(w,w2); table->insert(wgt,w2);
} }
void remove(Fl_Widget& w) { void remove(Fl_Widget& wgt) {
table->remove(w); table->remove(wgt);
} }
void begin() { void begin() {
table->begin(); table->begin();
@ -920,11 +920,11 @@ public:
int children() const { int children() const {
return(table->children()-2); // -2: skip Fl_Scroll's h/v scrollbar widgets return(table->children()-2); // -2: skip Fl_Scroll's h/v scrollbar widgets
} }
int find(const Fl_Widget *w) const { int find(const Fl_Widget *wgt) const {
return(table->find(w)); return(table->find(wgt));
} }
int find(const Fl_Widget &w) const { int find(const Fl_Widget &wgt) const {
return(table->find(w)); return(table->find(wgt));
} }
// CALLBACKS // CALLBACKS

View File

@ -857,7 +857,7 @@ public:
\param[in] w the possible parent widget. \param[in] w the possible parent widget.
\see contains() \see contains()
*/ */
int inside(const Fl_Widget* w) const {return w ? w->contains(this) : 0;} int inside(const Fl_Widget* wgt) const {return wgt ? wgt->contains(this) : 0;}
/** Schedules the drawing of the widget. /** Schedules the drawing of the widget.
Marks the widget as needing its draw() routine called. Marks the widget as needing its draw() routine called.

View File

@ -488,7 +488,7 @@ inline void fl_transformed_vertex(double xf, double yf) {fl_graphics_driver->tra
The size of the font is measured in pixels and not "points". The size of the font is measured in pixels and not "points".
Lines should be spaced \p size pixels apart or more. Lines should be spaced \p size pixels apart or more.
*/ */
inline void fl_font(Fl_Font face, Fl_Fontsize size) { fl_graphics_driver->font(face,size); } inline void fl_font(Fl_Font face, Fl_Fontsize fsize) { fl_graphics_driver->font(face,fsize); }
/** /**
Returns the \p face set by the most recent call to fl_font(). Returns the \p face set by the most recent call to fl_font().

2
FL/x.H
View File

@ -165,7 +165,7 @@ public:
extern FL_EXPORT char fl_override_redirect; // hack into Fl_X::make_xid() extern FL_EXPORT char fl_override_redirect; // hack into Fl_X::make_xid()
extern FL_EXPORT int fl_background_pixel; // hack into Fl_X::make_xid() extern FL_EXPORT int fl_background_pixel; // hack into Fl_X::make_xid()
inline Window fl_xid(const Fl_Window* w) { Fl_X *temp = Fl_X::i(w); return temp ? temp->xid : 0; } inline Window fl_xid(const Fl_Window* w) { Fl_X *xTemp = Fl_X::i(w); return xTemp ? xTemp->xid : 0; }
#else #else