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; };