[Libreoffice-commits] core.git: oox/source

Julien Nabet serval2412 at yahoo.fr
Mon Apr 1 09:49:51 PDT 2013


 oox/source/ppt/slidepersist.cxx |   13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

New commits:
commit abcf4fec9be9490b7062e57dd56422baf4d640c5
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Mon Apr 1 18:47:29 2013 +0200

    Prefer prefix ++/-- operators for non-primitive types
    
    Change-Id: I59a332c96793ced08bb509776dbcb8fd6c9d2ab9

diff --git a/oox/source/ppt/slidepersist.cxx b/oox/source/ppt/slidepersist.cxx
index 92be16e..ddba98e 100644
--- a/oox/source/ppt/slidepersist.cxx
+++ b/oox/source/ppt/slidepersist.cxx
@@ -124,12 +124,14 @@ void SlidePersist::createXShapes( XmlFilterBase& rFilterBase )
     Reference< XShapes > xShapes( getPage(), UNO_QUERY );
 
     std::vector< oox::drawingml::ShapePtr >& rShapes( maShapesPtr->getChildren() );
-    std::vector< oox::drawingml::ShapePtr >::iterator aShapesIter( rShapes.begin() );
-    while( aShapesIter != rShapes.end() )
+    const std::vector< oox::drawingml::ShapePtr >::const_iterator aShapesEnd( rShapes.end() );
+    for (std::vector< oox::drawingml::ShapePtr >::const_iterator aShapesIter( rShapes.begin() );
+         aShapesIter != aShapesEnd ; ++aShapesIter)
     {
-        std::vector< oox::drawingml::ShapePtr >& rChildren( (*aShapesIter++)->getChildren() );
-        std::vector< oox::drawingml::ShapePtr >::iterator aChildIter( rChildren.begin() );
-        while( aChildIter != rChildren.end() )
+        std::vector< oox::drawingml::ShapePtr >& rChildren( (*aShapesIter)->getChildren() );
+        const std::vector< oox::drawingml::ShapePtr >::const_iterator aChildEnd( rChildren.end() );
+        for (std::vector< oox::drawingml::ShapePtr >::const_iterator aChildIter( rChildren.begin() );
+             aChildIter != aChildEnd ; ++aChildIter)
         {
             PPTShape* pPPTShape = dynamic_cast< PPTShape* >( (*aChildIter).get() );
             basegfx::B2DHomMatrix aTransformation;
@@ -137,7 +139,6 @@ void SlidePersist::createXShapes( XmlFilterBase& rFilterBase )
                 pPPTShape->addShape( rFilterBase, *this, getTheme().get(), xShapes, aTransformation, 0, &getShapeMap() );
             else
                 (*aChildIter)->addShape( rFilterBase, getTheme().get(), xShapes, aTransformation, maShapesPtr->getFillProperties(), 0, &getShapeMap() );
-            aChildIter++;
         }
     }
 


More information about the Libreoffice-commits mailing list