summaryrefslogtreecommitdiff
path: root/basegfx/source/polygon/b2dpolypolygon.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/polygon/b2dpolypolygon.cxx')
-rw-r--r--basegfx/source/polygon/b2dpolypolygon.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygon.cxx b/basegfx/source/polygon/b2dpolypolygon.cxx
index 92b74e7e3e52..a77652d74ac6 100644
--- a/basegfx/source/polygon/b2dpolypolygon.cxx
+++ b/basegfx/source/polygon/b2dpolypolygon.cxx
@@ -105,7 +105,7 @@ public:
void setClosed(bool bNew)
{
- for(sal_uInt32 a(0L); a < maPolygons.size(); a++)
+ for(size_t a(0L); a < maPolygons.size(); a++)
{
maPolygons[a].setClosed(bNew);
}
@@ -127,7 +127,7 @@ public:
void transform(const basegfx::B2DHomMatrix& rMatrix)
{
- for(sal_uInt32 a(0L); a < maPolygons.size(); a++)
+ for(size_t a(0L); a < maPolygons.size(); a++)
{
maPolygons[a].transform(rMatrix);
}