summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-07-18 10:06:41 +0000
committerOliver Bolte <obo@openoffice.org>2007-07-18 10:06:41 +0000
commit05258ecf60b6ee644838af38bb86c8fc570f51fe (patch)
treed35d229f01e79046eaf22bc18f2bf8ceeda2a417
parent2c3f7d6f61ba38d3ebc71cf6d8795d136a134361 (diff)
INTEGRATION: CWS aw051 (1.17.24); FILE MERGED
2007/06/06 15:49:41 aw 1.17.24.1: #i77162# B2DPolygin control point interface changes
-rw-r--r--basegfx/source/polygon/b2dpolypolygon.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygon.cxx b/basegfx/source/polygon/b2dpolypolygon.cxx
index 5197668b43d0..814f6d3112da 100644
--- a/basegfx/source/polygon/b2dpolypolygon.cxx
+++ b/basegfx/source/polygon/b2dpolypolygon.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: b2dpolypolygon.cxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: ihi $ $Date: 2006-11-14 14:08:20 $
+ * last change: $Author: obo $ $Date: 2007-07-18 11:06:41 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -266,13 +266,13 @@ namespace basegfx
mpPolyPolygon->setB2DPolygon(nIndex, rPolygon);
}
- bool B2DPolyPolygon::areControlVectorsUsed() const
+ bool B2DPolyPolygon::areControlPointsUsed() const
{
for(sal_uInt32 a(0L); a < mpPolyPolygon->count(); a++)
{
const ::basegfx::B2DPolygon& rPolygon = mpPolyPolygon->getB2DPolygon(a);
- if(rPolygon.areControlVectorsUsed())
+ if(rPolygon.areControlPointsUsed())
{
return true;
}