From 13d8e38b826a8da6fee1c06da54bc22a165f14cf Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 26 Jun 2008 10:28:21 +0000 Subject: [PATCH] Fix some compilations errors. --- GraphicsView/include/CGAL/Qt/Converter.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GraphicsView/include/CGAL/Qt/Converter.h b/GraphicsView/include/CGAL/Qt/Converter.h index 45f698d0602..1a21c4d1c18 100644 --- a/GraphicsView/include/CGAL/Qt/Converter.h +++ b/GraphicsView/include/CGAL/Qt/Converter.h @@ -16,7 +16,7 @@ namespace Qt { template class Converter { - K::Iso_rectangle_2 clippingRect; + typename K::Iso_rectangle_2 clippingRect; public: @@ -68,7 +68,7 @@ public: if(CGAL::assign(s,o)){ return this->operator()(s); } else if(CGAL::assign(p,o)){ - return QLineF(operator()(p), operator()(p)) + return QLineF(operator()(p), operator()(p)); } return QLineF(); } @@ -81,7 +81,7 @@ public: if(CGAL::assign(s,o)){ return this->operator()(s); } else if(CGAL::assign(p,o)){ - return QLineF(operator()(p), operator()(p)) + return QLineF(operator()(p), operator()(p)); } return QLineF(); }