diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 02:44:47 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 02:44:47 +0000 |
commit | e970f395fbc0b6a3e3f6d7ed96eb036078d265f3 (patch) | |
tree | a637bfe623abc1a8359bdf2954dae0e4704bb8cc /basegfx/source/polygon | |
parent | 027ac988ad4ea3a03eda8aa9812425557b29765a (diff) |
INTEGRATION: CWS warnings01 (1.12.6); FILE MERGED
2005/11/07 19:36:57 pl 1.12.6.2: RESYNC: (1.12-1.13); FILE MERGED
2005/10/24 16:15:03 pl 1.12.6.1: #i55991# remove warnings for solaris platform
Diffstat (limited to 'basegfx/source/polygon')
-rw-r--r-- | basegfx/source/polygon/b2dpolypolygontools.cxx | 8 |
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 |