slideshow/source/engine/animationnodes/basenode.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 4c64a07b5861108c9095cc9cfc14616c9e238456 Author: Andrea Gelmini <[email protected]> AuthorDate: Thu Aug 20 13:10:53 2020 +0200 Commit: Julien Nabet <[email protected]> CommitDate: Fri Aug 21 12:36:16 2020 +0200 Fix typo in code Change-Id: I65d54b3822177916850d296dcff1eb9baaebc964 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101110 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/slideshow/source/engine/animationnodes/basenode.cxx b/slideshow/source/engine/animationnodes/basenode.cxx index 1b8a6d7fde02..cf732f89701f 100644 --- a/slideshow/source/engine/animationnodes/basenode.cxx +++ b/slideshow/source/engine/animationnodes/basenode.cxx @@ -633,8 +633,8 @@ void BaseNode::notifyDeactivating( const AnimationNodeSharedPtr& rNotifier ) void BaseNode::notifyEndListeners() const { // notify all listeners - for( const auto& rListner : maDeactivatingListeners ) - rListner->notifyDeactivating( mpSelf ); + for( const auto& rListener : maDeactivatingListeners ) + rListener->notifyDeactivating( mpSelf ); // notify state change maContext.mrEventMultiplexer.notifyAnimationEnd( mpSelf ); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
