Fixed bug from removing the namespace in this layer.

LineWidth -> CGAL::LineWidth
This commit is contained in:
Radu Ursu 2003-03-10 18:04:28 +00:00
parent 086a000b51
commit 24cd334b99
1 changed files with 2 additions and 2 deletions

View File

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