summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/shapes/drawshapesubsetting.cxx4
-rw-r--r--slideshow/source/engine/transitions/slidechangebase.cxx6
2 files changed, 5 insertions, 5 deletions
diff --git a/slideshow/source/engine/shapes/drawshapesubsetting.cxx b/slideshow/source/engine/shapes/drawshapesubsetting.cxx
index 3c3e1d7881c5..588f6cc47613 100644
--- a/slideshow/source/engine/shapes/drawshapesubsetting.cxx
+++ b/slideshow/source/engine/shapes/drawshapesubsetting.cxx
@@ -394,8 +394,8 @@ namespace slideshow
// the whole shape set
// determine new subset range
- for( const auto& pShape : maSubsetShapes )
- updateSubsetBounds( pShape );
+ for( const auto& rSubsetShape : maSubsetShapes )
+ updateSubsetBounds( rSubsetShape );
updateSubsets();
diff --git a/slideshow/source/engine/transitions/slidechangebase.cxx b/slideshow/source/engine/transitions/slidechangebase.cxx
index a13dd27be25f..cdc1d22134c8 100644
--- a/slideshow/source/engine/transitions/slidechangebase.cxx
+++ b/slideshow/source/engine/transitions/slidechangebase.cxx
@@ -446,12 +446,12 @@ void SlideChangeBase::viewsChanged()
if( mbFinished )
return;
- for( auto& pView : maViewData )
+ for( auto& rView : maViewData )
{
// clear stale info (both bitmaps and sprites prolly need a
// resize)
- clearViewEntry( pView );
- addSprites( pView );
+ clearViewEntry( rView );
+ addSprites( rView );
}
}