slideshow/source/engine/box2dtools.cxx | 4 ++-- slideshow/source/inc/box2dtools.hxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
New commits: commit ee91c0b0fa03a59581bbc67709756b565cddff52 Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Tue Feb 1 16:18:49 2022 +0100 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Wed Feb 2 15:26:01 2022 +0100 Fix function name Change-Id: I53a9018ed96b66095ddfc87ad24dc32e2e5bb485 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129319 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/slideshow/source/engine/box2dtools.cxx b/slideshow/source/engine/box2dtools.cxx index cb365165a274..c6009afa6878 100644 --- a/slideshow/source/engine/box2dtools.cxx +++ b/slideshow/source/engine/box2dtools.cxx @@ -387,7 +387,7 @@ void box2DWorld::processUpdateQueue(const double fPassedTime) } } -void box2DWorld::initateAllShapesAsStaticBodies( +void box2DWorld::initiateAllShapesAsStaticBodies( const slideshow::internal::ShapeManagerSharedPtr& pShapeManager) { assert(mpBox2DWorld); @@ -592,7 +592,7 @@ void box2DWorld::alertPhysicsAnimationStart( initiateWorld(rSlideSize); if (!mbShapesInitialized) - initateAllShapesAsStaticBodies(pShapeManager); + initiateAllShapesAsStaticBodies(pShapeManager); mnPhysicsAnimationCounter++; } diff --git a/slideshow/source/inc/box2dtools.hxx b/slideshow/source/inc/box2dtools.hxx index c7edd00ca27b..e876468df7e6 100644 --- a/slideshow/source/inc/box2dtools.hxx +++ b/slideshow/source/inc/box2dtools.hxx @@ -306,8 +306,8 @@ public: const float fDensity = 1.0f, const float fFriction = 0.3f); /// Initiate all the shapes in the current slide in the box2DWorld as static ones - void - initateAllShapesAsStaticBodies(const slideshow::internal::ShapeManagerSharedPtr& pShapeManager); + void initiateAllShapesAsStaticBodies( + const slideshow::internal::ShapeManagerSharedPtr& pShapeManager); /// @return whether the box2DWorld has a stepper or not bool hasWorldStepper() const;