summaryrefslogtreecommitdiff
path: root/FL/Fl_Device.H
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2011-10-02 06:25:13 +0000
committerMatthias Melcher <fltk@matthiasm.com>2011-10-02 06:25:13 +0000
commitc1caad3e62a5621f03047ffe68d985bba94f3fcf (patch)
tree446db7d138da12ada88ca31f4f7008d3bd5655ae /FL/Fl_Device.H
parente3b758c6f040946cdbdfe2473def2ce14f327873 (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_Device.H')
-rw-r--r--FL/Fl_Device.H6
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Device.H b/FL/Fl_Device.H
index 9ea58556d..5b6970fab 100644
--- a/FL/Fl_Device.H
+++ b/FL/Fl_Device.H
@@ -364,7 +364,7 @@ public:
static const char *class_id;
virtual const char *class_name() {return class_id;};
/** \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). */
Fl_Font font() {return font_; }
/** \brief see fl_size(). */
@@ -529,8 +529,8 @@ public:
class FL_EXPORT Fl_Device_Plugin : public Fl_Plugin {
public:
/** \brief The constructor */
- Fl_Device_Plugin(const char *name)
- : Fl_Plugin(klass(), name) { }
+ Fl_Device_Plugin(const char *pluginName)
+ : Fl_Plugin(klass(), pluginName) { }
/** \brief Returns the class name */
virtual const char *klass() { return "fltk:device"; }
/** \brief Returns the plugin name */