From 24cd334b99f04a577e2cca6da93f667bf1fae58b Mon Sep 17 00:00:00 2001 From: Radu Ursu Date: Mon, 10 Mar 2003 18:04:28 +0000 Subject: [PATCH] Fixed bug from removing the namespace in this layer. LineWidth -> CGAL::LineWidth --- .../demo/Qt_widget/Partition_2/Qt_layer_show_polygon.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packages/Qt_widget/demo/Qt_widget/Partition_2/Qt_layer_show_polygon.h b/Packages/Qt_widget/demo/Qt_widget/Partition_2/Qt_layer_show_polygon.h index 92009b4c638..767a29c2570 100644 --- a/Packages/Qt_widget/demo/Qt_widget/Partition_2/Qt_layer_show_polygon.h +++ b/Packages/Qt_widget/demo/Qt_widget/Partition_2/Qt_layer_show_polygon.h @@ -34,10 +34,10 @@ public: Qt_layer_show_polygon(T &p) : polygon(p){}; void draw() { - *widget << LineWidth(3); + *widget << CGAL::LineWidth(3); *widget << CGAL::BLUE; *widget << polygon; - *widget << LineWidth(1); + *widget << CGAL::LineWidth(1); *widget << CGAL::WHITE; *widget << polygon; };