summaryrefslogtreecommitdiffstats
path: root/vcl/quartz
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-12-25 15:03:11 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-12-25 15:03:11 +0100
commitb95ad38e6ccfc4329abe8dd61aa03813b485729b (patch)
treecacdd2e897e103cfa7fce56549df643f39f924f2 /vcl/quartz
parentconvert text control character dialog to .ui (diff)
downloadcore-b95ad38e6ccfc4329abe8dd61aa03813b485729b.tar.gz
core-b95ad38e6ccfc4329abe8dd61aa03813b485729b.zip
cppcheck: Prefer prefix ++/-- operators for non-primitive types
Change-Id: I8bd50f3c9ea3cfc770d530c9cbde0ad00e4def4c
Diffstat (limited to 'vcl/quartz')
-rw-r--r--vcl/quartz/salgdicommon.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx
index 59edb0539c34..3c0ca49af2e2 100644
--- a/vcl/quartz/salgdicommon.cxx
+++ b/vcl/quartz/salgdicommon.cxx
@@ -1527,7 +1527,7 @@ bool AquaSalGraphics::setClipRegion( const Region& i_rClip )
RectangleVector aRectangles;
i_rClip.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 long nW(aRectIter->Right() - aRectIter->Left() + 1); // uses +1 logic in original