From 49a57069fdfaa0602bb7e2725e55dbd436a15f59 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 24 Sep 2008 13:24:24 +0000 Subject: [PATCH] Fix a MSVCism: in a class template, when one use a member data from a base class, one need to use this->... --- GraphicsView/include/CGAL/Qt/CircularArcGraphicsItem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GraphicsView/include/CGAL/Qt/CircularArcGraphicsItem.h b/GraphicsView/include/CGAL/Qt/CircularArcGraphicsItem.h index 0d9d01bab28..de1f55c0c42 100644 --- a/GraphicsView/include/CGAL/Qt/CircularArcGraphicsItem.h +++ b/GraphicsView/include/CGAL/Qt/CircularArcGraphicsItem.h @@ -53,7 +53,7 @@ public: const QPen& verticesPen() const { - return vertices_pen; + return this->vertices_pen; } const QPen& edgesPen() const @@ -63,7 +63,7 @@ public: void setVerticesPen(const QPen& pen) { - vertices_pen = pen; + this->vertices_pen = pen; } void setEdgesPen(const QPen& pen)