summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-12-24 13:36:17 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-12-24 13:36:17 +0000
commitdd009202efb61a1f13e459c6f33871a86da83b69 (patch)
treede41f66463422a1a1f2fee4216bbeb637612a5ce
parentc5fccf60b7e4a8b03f7e3502856061255aa906ff (diff)
cppcheck: prefer prefix variant
-rw-r--r--sd/source/filter/eppt/epptso.cxx4
1 files 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() )
{