[Libreoffice-commits] core.git: vcl/quartz
Julien Nabet
serval2412 at yahoo.fr
Sat Apr 12 08:44:26 PDT 2014
vcl/quartz/ctlayout.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 6a3440de1d1156c6a0bdb02e7cc38dea990654e3
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sat Apr 12 17:43:57 2014 +0200
cppcheck: Prefer prefix ++/-- operators for non-primitive types
Change-Id: I7060802164989c2797d4abea29a378eaa3a54b41
diff --git a/vcl/quartz/ctlayout.cxx b/vcl/quartz/ctlayout.cxx
index a9cac89..06bf300 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())
{
More information about the Libreoffice-commits
mailing list