Fix some compilations errors.

This commit is contained in:
Laurent Rineau 2008-06-26 10:28:21 +00:00
parent cb540abc20
commit 13d8e38b82
1 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ namespace Qt {
template <typename K>
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();
}