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> template <typename K>
class Converter { class Converter {
K::Iso_rectangle_2 clippingRect; typename K::Iso_rectangle_2 clippingRect;
public: public:
@ -68,7 +68,7 @@ public:
if(CGAL::assign(s,o)){ if(CGAL::assign(s,o)){
return this->operator()(s); return this->operator()(s);
} else if(CGAL::assign(p,o)){ } else if(CGAL::assign(p,o)){
return QLineF(operator()(p), operator()(p)) return QLineF(operator()(p), operator()(p));
} }
return QLineF(); return QLineF();
} }
@ -81,7 +81,7 @@ public:
if(CGAL::assign(s,o)){ if(CGAL::assign(s,o)){
return this->operator()(s); return this->operator()(s);
} else if(CGAL::assign(p,o)){ } else if(CGAL::assign(p,o)){
return QLineF(operator()(p), operator()(p)) return QLineF(operator()(p), operator()(p));
} }
return QLineF(); return QLineF();
} }