diff options
author | Armin Le Grand <Armin.Le.Grand@cib.de> | 2016-03-16 10:25:28 +0100 |
---|---|---|
committer | Björn Michaelsen <bjoern.michaelsen@canonical.com> | 2016-03-16 16:44:50 +0000 |
commit | d1d80806bacf77cdd42d8de19fddd39018c0a2d9 (patch) | |
tree | f183172c69e0d924637bec67f430c296a396d5a1 /sd | |
parent | 08dadbd90ec29011dc2367493f49c57d75f1e51b (diff) |
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@libreoffice.org>
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/animations/CustomAnimationPane.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/animations/CustomAnimationPane.cxx b/sd/source/ui/animations/CustomAnimationPane.cxx index 534101a16a44..e5f3816d2373 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); |