From d856411edf6b6dfd142669633d0ac4c1d91120cb Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Sat, 17 Apr 2010 20:33:57 +0000 Subject: [PATCH] Fix an error (typo) of the following revision: | ------------------------------------------------------------------------ | r55430 | nicokruithof | 2010-04-12 22:32:11 +0200 (Mon, 12 Apr 2010) | 3 lines | | Changed CGAL::Type to K::Type to get derived kernels compiling. | Exception: Didn't change Circular_arc_point_2 as it is not defined by the default kernel. | | ------------------------------------------------------------------------ --- GraphicsView/include/CGAL/Qt/Converter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GraphicsView/include/CGAL/Qt/Converter.h b/GraphicsView/include/CGAL/Qt/Converter.h index 6d0dd006f2a..f8072d37102 100644 --- a/GraphicsView/include/CGAL/Qt/Converter.h +++ b/GraphicsView/include/CGAL/Qt/Converter.h @@ -146,7 +146,7 @@ public: return QLineF(); } - QPolygonF operator()(const CGAL_Ray_2 &t) + QPolygonF operator()(const CGAL_Triangle_2 &t) { QPolygonF qp; qp << operator()(t.vertex(0)) << operator()(t.vertex(1)) << operator()(t.vertex(2));