summaryrefslogtreecommitdiff
path: root/basegfx/source/range/b2dpolyrange.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/range/b2dpolyrange.cxx')
-rw-r--r--basegfx/source/range/b2dpolyrange.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/basegfx/source/range/b2dpolyrange.cxx b/basegfx/source/range/b2dpolyrange.cxx
index f5ead1641d15..21905e408167 100644
--- a/basegfx/source/range/b2dpolyrange.cxx
+++ b/basegfx/source/range/b2dpolyrange.cxx
@@ -52,10 +52,10 @@ namespace basegfx
return std::make_tuple(maRanges[nIndex], maOrient[nIndex]);
}
- void appendElement(const B2DRange& rRange, B2VectorOrientation eOrient, sal_uInt32 nCount)
+ void appendElement(const B2DRange& rRange, B2VectorOrientation eOrient)
{
- maRanges.insert(maRanges.end(), nCount, rRange);
- maOrient.insert(maOrient.end(), nCount, eOrient);
+ maRanges.push_back(rRange);
+ maOrient.push_back(eOrient);
maBounds.expand(rRange);
}
@@ -130,9 +130,9 @@ namespace basegfx
return mpImpl->getElement(nIndex);
}
- void B2DPolyRange::appendElement(const B2DRange& rRange, B2VectorOrientation eOrient, sal_uInt32 nCount)
+ void B2DPolyRange::appendElement(const B2DRange& rRange, B2VectorOrientation eOrient)
{
- mpImpl->appendElement(rRange, eOrient, nCount );
+ mpImpl->appendElement(rRange, eOrient);
}
void B2DPolyRange::clear()