diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-04-12 17:43:57 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2014-04-12 17:43:57 +0200 |
commit | 6a3440de1d1156c6a0bdb02e7cc38dea990654e3 (patch) | |
tree | b3a14cceab4dd7e94d75f1fa045d166f00140b98 | |
parent | 6c6f78c6567db73aa85de4beb461db2cddac7b2a (diff) |
cppcheck: Prefer prefix ++/-- operators for non-primitive types
Change-Id: I7060802164989c2797d4abea29a378eaa3a54b41
-rw-r--r-- | vcl/quartz/ctlayout.cxx | 2 |
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()) { |