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

New commits:
commit d1d80806bacf77cdd42d8de19fddd39018c0a2d9
Author: Armin Le Grand <armin.le.gr...@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 <c...@libreoffice.org>
    Reviewed-by: Björn Michaelsen <bjoern.michael...@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);
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to