summaryrefslogtreecommitdiff
path: root/FL/Fl_PostScript.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_PostScript.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_PostScript.H')
-rw-r--r--FL/Fl_PostScript.H4
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_PostScript.H b/FL/Fl_PostScript.H
index 827a7fbf2..e7613f2e3 100644
--- a/FL/Fl_PostScript.H
+++ b/FL/Fl_PostScript.H
@@ -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_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__
- 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
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);