diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2022-02-01 16:18:49 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2022-02-02 15:26:01 +0100 |
commit | ee91c0b0fa03a59581bbc67709756b565cddff52 (patch) | |
tree | b6fba4b06fca22906a061900151d6b7fe5032940 /slideshow | |
parent | 2c713f73bf4e654b5b437eaa5de232899252a49e (diff) |
Fix function name
Change-Id: I53a9018ed96b66095ddfc87ad24dc32e2e5bb485
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129319
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/box2dtools.cxx | 4 | ||||
-rw-r--r-- | slideshow/source/inc/box2dtools.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
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; |