diff options
author | Armin Weiss <aw@openoffice.org> | 2004-02-12 16:33:43 +0000 |
---|---|---|
committer | Armin Weiss <aw@openoffice.org> | 2004-02-12 16:33:43 +0000 |
commit | 2c3e2190e05168a7e28df0c8ceb6512936561d33 (patch) | |
tree | 25fcb8847ae19f6abe043ff54fcf7b0d7df5aaf6 /basegfx/source/polygon/b2dpolypolygon.cxx | |
parent | b23dfd18d71d77164ae51be108de09f3ed00f7a7 (diff) |
Added areControlPointsUsed(), areControlVectorsUsed() methods
Diffstat (limited to 'basegfx/source/polygon/b2dpolypolygon.cxx')
-rw-r--r-- | basegfx/source/polygon/b2dpolypolygon.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
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; } |