diff options
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; |