summaryrefslogtreecommitdiffstats
path: root/drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx')
-rw-r--r--drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx b/drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx
index 4c4406ee4a5a..9c52a19c32f7 100644
--- a/drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx
@@ -107,7 +107,7 @@ namespace drawinglayer
if(getPositions().size())
{
// get the basic range from the position vector
- for(std::vector< basegfx::B2DPoint >::const_iterator aIter(getPositions().begin()); aIter != getPositions().end(); aIter++)
+ for(std::vector< basegfx::B2DPoint >::const_iterator aIter(getPositions().begin()), aEnd(getPositions().end()); aIter != aEnd; ++aIter)
{
aRetval.expand(*aIter);
}