summaryrefslogtreecommitdiff
path: root/vcl/quartz
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2014-04-12 17:43:57 +0200
committerJulien Nabet <serval2412@yahoo.fr>2014-04-12 17:43:57 +0200
commit6a3440de1d1156c6a0bdb02e7cc38dea990654e3 (patch)
treeb3a14cceab4dd7e94d75f1fa045d166f00140b98 /vcl/quartz
parent6c6f78c6567db73aa85de4beb461db2cddac7b2a (diff)
cppcheck: Prefer prefix ++/-- operators for non-primitive types
Change-Id: I7060802164989c2797d4abea29a378eaa3a54b41
Diffstat (limited to 'vcl/quartz')
-rw-r--r--vcl/quartz/ctlayout.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/ctlayout.cxx b/vcl/quartz/ctlayout.cxx
index a9cac895ae1b..06bf300a7f26 100644
--- a/vcl/quartz/ctlayout.cxx
+++ b/vcl/quartz/ctlayout.cxx
@@ -395,7 +395,7 @@ int CTLayout::GetNextGlyphs( int nLen, sal_GlyphId* pOutGlyphIds, Point& rPos, i
while(iter != m_vRunData.end() && iter->m_EndPos <= nStart)
{
- iter++;
+ ++iter;
}
if(iter == m_vRunData.end())
{