[Libreoffice-commits] core.git: slideshow/source
Julien Nabet (via logerrit)
logerrit at kemper.freedesktop.org
Sat Aug 8 08:22:00 UTC 2020
slideshow/source/engine/slide/layermanager.cxx | 2 +-
slideshow/source/engine/slide/slideimpl.cxx | 4 ++--
slideshow/source/inc/slide.hxx | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
New commits:
commit 749ac5f415a590da505eb5e3d4a37a49a9c82fcc
Author: Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Sat Aug 8 08:19:27 2020 +0200
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sat Aug 8 10:21:28 2020 +0200
Typo bSlideBackgoundPainted
Change-Id: Ice11d37e9832b5841f36e8873f4d11e9c0d6b3c3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100376
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/slideshow/source/engine/slide/layermanager.cxx b/slideshow/source/engine/slide/layermanager.cxx
index 35131ccb1a22..74a26d1e73b3 100644
--- a/slideshow/source/engine/slide/layermanager.cxx
+++ b/slideshow/source/engine/slide/layermanager.cxx
@@ -98,7 +98,7 @@ namespace slideshow::internal
for( const auto& pLayer : maLayers )
pLayer->clearUpdateRanges();
- updateShapeLayers( true/*bSlideBackgoundPainted*/ );
+ updateShapeLayers( true/*bSlideBackgroundPainted*/ );
}
void LayerManager::deactivate()
diff --git a/slideshow/source/engine/slide/slideimpl.cxx b/slideshow/source/engine/slide/slideimpl.cxx
index a9120c6da829..b70f8b5abe4e 100644
--- a/slideshow/source/engine/slide/slideimpl.cxx
+++ b/slideshow/source/engine/slide/slideimpl.cxx
@@ -385,7 +385,7 @@ void SlideImpl::prefetch()
applyInitialShapeAttributes(mxRootNode);
}
-void SlideImpl::show( bool bSlideBackgoundPainted )
+void SlideImpl::show( bool bSlideBackgroundPainted )
{
if( mbActive )
return; // already active
@@ -410,7 +410,7 @@ void SlideImpl::show( bool bSlideBackgoundPainted )
// render slide to screen, if requested
- if( !bSlideBackgoundPainted )
+ if( !bSlideBackgroundPainted )
{
for( const auto& rContext : maContext.mrViewContainer )
slideRenderer( this, rContext );
diff --git a/slideshow/source/inc/slide.hxx b/slideshow/source/inc/slide.hxx
index db1c0d6f0917..bc3ffeb2aa63 100644
--- a/slideshow/source/inc/slide.hxx
+++ b/slideshow/source/inc/slide.hxx
@@ -71,13 +71,13 @@ namespace slideshow::internal
After this call, the slide will render itself to the
views, and start its animations.
- @param bSlideBackgoundPainted
+ @param bSlideBackgroundPainted
When true, the initial slide content on the background
layer is already rendered (e.g. from a previous slide
transition). When false, Slide renders initial content of
slide.
*/
- virtual void show( bool bSlideBackgoundPainted ) = 0;
+ virtual void show( bool bSlideBackgroundPainted ) = 0;
/** Force-ends the slide
More information about the Libreoffice-commits
mailing list