summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/polygon/b2dpolypolygontools.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygontools.cxx b/basegfx/source/polygon/b2dpolypolygontools.cxx
index 907c4456488b..18c587a2b629 100644
--- a/basegfx/source/polygon/b2dpolypolygontools.cxx
+++ b/basegfx/source/polygon/b2dpolypolygontools.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: b2dpolypolygontools.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: kz $ $Date: 2005-11-02 13:58:56 $
+ * last change: $Author: hr $ $Date: 2006-06-20 03:44:47 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -282,9 +282,9 @@ namespace basegfx
if(aNewCandidate.getB2DPoint(0L) == aMergePolygon.getB2DPoint(aMergePolygon.count() - 1L))
{
// copy remaining points to aMergePolygon
- for(sal_uInt32 a(1L); a < aNewCandidate.count(); a++)
+ for(sal_uInt32 b(1L); b < aNewCandidate.count(); b++)
{
- aMergePolygon.append(aNewCandidate.getB2DPoint(a));
+ aMergePolygon.append(aNewCandidate.getB2DPoint(b));
}
}
else