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

Armin Le Grand Armin.Le.Grand at cib.de
Wed Mar 16 16:45:15 UTC 2016


 sd/source/ui/animations/CustomAnimationPane.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d1d80806bacf77cdd42d8de19fddd39018c0a2d9
Author: Armin Le Grand <Armin.Le.Grand at cib.de>
Date:   Wed Mar 16 10:25:28 2016 +0100

    tdf#98678 removed double for-loop
    
    By error the for-loop was added twice, removed one
    
    Change-Id: If098dae28857bd87a07bb828bab2c7330c5fd7f8
    Reviewed-on: https://gerrit.libreoffice.org/23294
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Björn Michaelsen <bjoern.michaelsen at canonical.com>

diff --git a/sd/source/ui/animations/CustomAnimationPane.cxx b/sd/source/ui/animations/CustomAnimationPane.cxx
index 534101a..e5f3816 100644
--- a/sd/source/ui/animations/CustomAnimationPane.cxx
+++ b/sd/source/ui/animations/CustomAnimationPane.cxx
@@ -1819,7 +1819,7 @@ void CustomAnimationPane::onAdd()
             ParagraphTarget aParaTarget;
             aParaTarget.Shape = xShape;
 
-            std::list< sal_Int16 >::iterator aIter( aParaList.begin() );                for( ; aIter != aParaList.end(); ++aIter )
+            std::list< sal_Int16 >::iterator aIter( aParaList.begin() );
             for( ; aIter != aParaList.end(); ++aIter )
             {
                 aParaTarget.Paragraph = (*aIter);


More information about the Libreoffice-commits mailing list