diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-06-13 22:18:20 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-06-13 22:18:37 +0200 |
commit | 6934312f617ccd86d0467e38129c2e5d861241b5 (patch) | |
tree | 3d58a65c74354b4a44c17b47fda32695b9bc4c73 /vcl/source/gdi/outdev2.cxx | |
parent | 8778882b8732454fac4a682e60a40ac2e3ad5c03 (diff) |
cppcheck: fix all the others Prefer prefix ++/-- operators
Change-Id: I7956510a5faf1d659f88268941f8afce44e83560
Diffstat (limited to 'vcl/source/gdi/outdev2.cxx')
-rw-r--r-- | vcl/source/gdi/outdev2.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/outdev2.cxx b/vcl/source/gdi/outdev2.cxx index 915fb89aa122..cc610069a904 100644 --- a/vcl/source/gdi/outdev2.cxx +++ b/vcl/source/gdi/outdev2.cxx @@ -1963,7 +1963,7 @@ void OutputDevice::ImplPrintTransparent( const Bitmap& rBmp, const Bitmap& rMask RectangleVector aRectangles; aWorkRgn.GetRegionRectangles(aRectangles); - for(RectangleVector::const_iterator aRectIter(aRectangles.begin()); aRectIter != aRectangles.end(); aRectIter++) + for(RectangleVector::const_iterator aRectIter(aRectangles.begin()); aRectIter != aRectangles.end(); ++aRectIter) { const Point aMapPt(pMapX[aRectIter->Left()], pMapY[aRectIter->Top()]); const Size aMapSz( @@ -2069,7 +2069,7 @@ void OutputDevice::ImplPrintMask( const Bitmap& rMask, const Color& rMaskColor, RectangleVector aRectangles; aWorkRgn.GetRegionRectangles(aRectangles); - for(RectangleVector::const_iterator aRectIter(aRectangles.begin()); aRectIter != aRectangles.end(); aRectIter++) + for(RectangleVector::const_iterator aRectIter(aRectangles.begin()); aRectIter != aRectangles.end(); ++aRectIter) { const Point aMapPt(pMapX[aRectIter->Left()], pMapY[aRectIter->Top()]); const Size aMapSz( |