From dd009202efb61a1f13e459c6f33871a86da83b69 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 24 Dec 2010 13:36:17 +0000 Subject: cppcheck: prefer prefix variant --- sd/source/filter/eppt/epptso.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sd/source/filter/eppt/epptso.cxx b/sd/source/filter/eppt/epptso.cxx index d04a8c0bfbf9..c7ddf5ba9585 100644 --- a/sd/source/filter/eppt/epptso.cxx +++ b/sd/source/filter/eppt/epptso.cxx @@ -3752,7 +3752,7 @@ void PPTWriter::ImplCreateTable( uno::Reference< drawing::XShape >& rXShape, Esc { ImplCreateCellBorder( &*aCellBorderIter, aCellBorderIter->mnPos, nYPos, static_cast< sal_Int32 >( aCellBorderIter->mnPos + aCellBorderIter->mnLength ), nYPos ); - aCellBorderIter++; + ++aCellBorderIter; } if ( nLine < xRows->getCount() ) { @@ -3804,7 +3804,7 @@ void PPTWriter::ImplCreateTable( uno::Reference< drawing::XShape >& rXShape, Esc { ImplCreateCellBorder( &*aCellBorderIter, nXPos, aCellBorderIter->mnPos, nXPos, static_cast< sal_Int32 >( aCellBorderIter->mnPos + aCellBorderIter->mnLength ) ); - aCellBorderIter++; + ++aCellBorderIter; } if ( nLine < xColumns->getCount() ) { -- cgit