From 2c3e2190e05168a7e28df0c8ceb6512936561d33 Mon Sep 17 00:00:00 2001 From: Armin Weiss Date: Thu, 12 Feb 2004 16:33:43 +0000 Subject: Added areControlPointsUsed(), areControlVectorsUsed() methods --- basegfx/source/polygon/b2dpolypolygon.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'basegfx/source/polygon/b2dpolypolygon.cxx') diff --git a/basegfx/source/polygon/b2dpolypolygon.cxx b/basegfx/source/polygon/b2dpolypolygon.cxx index 7861ce4cc6e2..0b32eec54d51 100644 --- a/basegfx/source/polygon/b2dpolypolygon.cxx +++ b/basegfx/source/polygon/b2dpolypolygon.cxx @@ -2,9 +2,9 @@ * * $RCSfile: b2dpolypolygon.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: aw $ $Date: 2004-02-03 18:18:23 $ + * last change: $Author: aw $ $Date: 2004-02-12 17:33:43 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -318,13 +318,13 @@ namespace basegfx } } - bool B2DPolyPolygon::areControlPointsUsed() const + bool B2DPolyPolygon::areControlVectorsUsed() const { for(sal_uInt32 a(0L); a < mpPolyPolygon->count(); a++) { const ::basegfx::B2DPolygon& rPolygon = mpPolyPolygon->getB2DPolygon(a); - if(rPolygon.areControlPointsUsed()) + if(rPolygon.areControlVectorsUsed()) { return true; } -- cgit v1.2.1