From bf5b902180f0e5654f5802cf9ef588ecf57d20c6 Mon Sep 17 00:00:00 2001
From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>
Date: Mon, 21 Mar 2022 14:39:00 +0100
Subject: Rename member Fl_Graphics_Driver::p to xpoint to avoid shadowing.
---
src/drivers/Quartz/Fl_Quartz_Graphics_Driver.H | 4 ++--
src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx | 16 ++++++++--------
src/drivers/SVG/Fl_SVG_File_Surface.cxx | 17 ++++++++---------
3 files changed, 18 insertions(+), 19 deletions(-)
(limited to 'src/drivers')
diff --git a/src/drivers/Quartz/Fl_Quartz_Graphics_Driver.H b/src/drivers/Quartz/Fl_Quartz_Graphics_Driver.H
index fcbbe810b..3062a0217 100644
--- a/src/drivers/Quartz/Fl_Quartz_Graphics_Driver.H
+++ b/src/drivers/Quartz/Fl_Quartz_Graphics_Driver.H
@@ -2,7 +2,7 @@
// Definition of Apple Quartz graphics driver
// for the Fast Light Tool Kit (FLTK).
//
-// Copyright 2010-2018 by Bill Spitzak and others.
+// Copyright 2010-2022 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -59,7 +59,7 @@ protected:
virtual void cache_size(Fl_Image* img, int &width, int &height);
public:
Fl_Quartz_Graphics_Driver();
- virtual ~Fl_Quartz_Graphics_Driver() { if (p) free(p); }
+ virtual ~Fl_Quartz_Graphics_Driver() { if (xpoint) free(xpoint); }
virtual int has_feature(driver_feature mask) { return mask & NATIVE; }
virtual void gc(void *ctxt) { gc_ = (CGContextRef)ctxt; global_gc(); }
virtual void *gc() {return gc_;}
diff --git a/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx b/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx
index 2e85f3f8d..16c6c6c29 100644
--- a/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx
+++ b/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx
@@ -1,7 +1,7 @@
//
// Portable drawing routines for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2018 by Bill Spitzak and others.
+// Copyright 1998-2022 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -29,7 +29,7 @@
void Fl_Quartz_Graphics_Driver::end_points() {
for (int i = 0; i < n; i++) {
- point(p[i].x, p[i].y);
+ point(xpoint[i].x, xpoint[i].y);
}
}
@@ -40,9 +40,9 @@ void Fl_Quartz_Graphics_Driver::end_line() {
}
if (n<=1) return;
CGContextSetShouldAntialias(gc_, true);
- CGContextMoveToPoint(gc_, p[0].x, p[0].y);
+ CGContextMoveToPoint(gc_, xpoint[0].x, xpoint[0].y);
for (int i=1; i\n",
- p[i].x, p[i].y, p[i].x, p[i].y, red_, green_, blue_, width_);
+ xpoint[i].x, xpoint[i].y, xpoint[i].x, xpoint[i].y, red_, green_, blue_, width_);
}
}
@@ -866,9 +865,9 @@ void Fl_SVG_Graphics_Driver::end_line() {
return;
}
if (n<=1) return;
- fprintf(out_, "\n",
red_, green_, blue_, width_, dasharray_, linecap_, linejoin_);
}
@@ -880,9 +879,9 @@ void Fl_SVG_Graphics_Driver::end_polygon() {
return;
}
if (n<=1) return;
- fprintf(out_, "\n", red_, green_, blue_);
}
@@ -910,9 +909,9 @@ void Fl_SVG_Graphics_Driver::end_complex_polygon() {
return;
}
if (n<=1) return;
- fprintf(out_, "\n", red_, green_, blue_);
}
--
cgit v1.2.3