Typo bSlideBackgoundPainted

Change-Id: Ice11d37e9832b5841f36e8873f4d11e9c0d6b3c3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100376
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
Julien Nabet
2020-08-08 08:19:27 +02:00
parent ba20c2b187
commit 749ac5f415
3 changed files with 5 additions and 5 deletions

View File

@@ -98,7 +98,7 @@ namespace slideshow::internal
for( const auto& pLayer : maLayers ) for( const auto& pLayer : maLayers )
pLayer->clearUpdateRanges(); pLayer->clearUpdateRanges();
updateShapeLayers( true/*bSlideBackgoundPainted*/ ); updateShapeLayers( true/*bSlideBackgroundPainted*/ );
} }
void LayerManager::deactivate() void LayerManager::deactivate()

View File

@@ -385,7 +385,7 @@ void SlideImpl::prefetch()
applyInitialShapeAttributes(mxRootNode); applyInitialShapeAttributes(mxRootNode);
} }
void SlideImpl::show( bool bSlideBackgoundPainted ) void SlideImpl::show( bool bSlideBackgroundPainted )
{ {
if( mbActive ) if( mbActive )
return; // already active return; // already active
@@ -410,7 +410,7 @@ void SlideImpl::show( bool bSlideBackgoundPainted )
// render slide to screen, if requested // render slide to screen, if requested
if( !bSlideBackgoundPainted ) if( !bSlideBackgroundPainted )
{ {
for( const auto& rContext : maContext.mrViewContainer ) for( const auto& rContext : maContext.mrViewContainer )
slideRenderer( this, rContext ); slideRenderer( this, rContext );

View File

@@ -71,13 +71,13 @@ namespace slideshow::internal
After this call, the slide will render itself to the After this call, the slide will render itself to the
views, and start its animations. views, and start its animations.
@param bSlideBackgoundPainted @param bSlideBackgroundPainted
When true, the initial slide content on the background When true, the initial slide content on the background
layer is already rendered (e.g. from a previous slide layer is already rendered (e.g. from a previous slide
transition). When false, Slide renders initial content of transition). When false, Slide renders initial content of
slide. slide.
*/ */
virtual void show( bool bSlideBackgoundPainted ) = 0; virtual void show( bool bSlideBackgroundPainted ) = 0;
/** Force-ends the slide /** Force-ends the slide