diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:09:12 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:09:12 +0000 |
commit | e7b77db21bc2070d5fcde95747035ae73ed6d805 (patch) | |
tree | 47825b5cf3bc492e2fb754d7486acb55eaa81e17 | |
parent | 0886fd754ee9bbd02754490c1717c39491a53876 (diff) |
cppunit: prefer prefix variant
-rw-r--r-- | sdext/source/minimizer/graphiccollector.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sdext/source/minimizer/graphiccollector.cxx b/sdext/source/minimizer/graphiccollector.cxx index cc7464f..fffa1e8 100644 --- a/sdext/source/minimizer/graphiccollector.cxx +++ b/sdext/source/minimizer/graphiccollector.cxx @@ -90,7 +90,7 @@ void ImpAddEntity( std::vector< GraphicCollector::GraphicEntity >& rGraphicEntit aIter->maUser.push_back( rUser ); break; } - aIter++; + ++aIter; } if ( aIter == rGraphicEntities.end() ) { @@ -340,12 +340,12 @@ void GraphicCollector::CollectGraphics( const Reference< XComponentContext >& rx } else aGraphicIter->mbRemoveCropArea = sal_False; - aGUIter++; + ++aGUIter; } } if ( !aGraphicIter->mbRemoveCropArea ) aGraphicIter->maGraphicCropLogic = text::GraphicCrop( 0, 0, 0, 0 ); - aGraphicIter++; + ++aGraphicIter; } } catch ( Exception& ) |