summaryrefslogtreecommitdiff
path: root/sd/source/core/EffectMigration.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/core/EffectMigration.cxx')
-rw-r--r--sd/source/core/EffectMigration.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/core/EffectMigration.cxx b/sd/source/core/EffectMigration.cxx
index 7aa7be5fe62b..8f73d7bb8883 100644
--- a/sd/source/core/EffectMigration.cxx
+++ b/sd/source/core/EffectMigration.cxx
@@ -1125,7 +1125,7 @@ void EffectMigration::SetPresentationOrder( SvxShape* pShape, sal_Int32 nNewPos
std::vector< CustomAnimationEffectPtr > aEffects;
- for( auto& rIter : aEffectVector[nCurrentPos] )
+ for( const auto& rIter : aEffectVector[nCurrentPos] )
{
aEffects.push_back( *rIter );
rSequence.erase( rIter );
@@ -1164,7 +1164,7 @@ sal_Int32 EffectMigration::GetPresentationOrder( SvxShape* pShape )
Reference< XShape > xThis( pShape );
Reference< XShape > xCurrent;
- for( CustomAnimationEffectPtr& pEffect : rSequence )
+ for( const CustomAnimationEffectPtr& pEffect : rSequence )
{
if( !xCurrent.is() || pEffect->getTargetShape() != xCurrent )
{