diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-24 10:43:29 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-24 10:44:30 +0200 |
commit | 1aa69bd5d4bdc8513892fb88760312fee52c310b (patch) | |
tree | 1ad956735ae6443e06ccc4b853058123e6f7493c /slideshow | |
parent | 967436ba7c552ea8fa30fd3b7abced231e174951 (diff) |
loplugin:countusersofdefaultparams in sd..slideshow
Change-Id: Iaf10935d8f231676333018a5954d97defe35acf6
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/transitions/spiralwipe.hxx | 2 | ||||
-rw-r--r-- | slideshow/source/engine/transitions/waterfallwipe.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/engine/transitions/spiralwipe.hxx b/slideshow/source/engine/transitions/spiralwipe.hxx index 7fd12148550a..a5906278dd94 100644 --- a/slideshow/source/engine/transitions/spiralwipe.hxx +++ b/slideshow/source/engine/transitions/spiralwipe.hxx @@ -47,7 +47,7 @@ protected: class BoxSnakesWipe : public SpiralWipe { public: - BoxSnakesWipe( sal_Int32 nElements, bool fourBox = false ) + BoxSnakesWipe( sal_Int32 nElements, bool fourBox ) : SpiralWipe(nElements), m_fourBox(fourBox) {} virtual ::basegfx::B2DPolyPolygon operator () ( double t ) override; private: diff --git a/slideshow/source/engine/transitions/waterfallwipe.hxx b/slideshow/source/engine/transitions/waterfallwipe.hxx index b524e36732bb..6f397058cd43 100644 --- a/slideshow/source/engine/transitions/waterfallwipe.hxx +++ b/slideshow/source/engine/transitions/waterfallwipe.hxx @@ -31,7 +31,7 @@ namespace internal { class WaterfallWipe : public ParametricPolyPolygon { public: - WaterfallWipe( sal_Int32 nElements, bool flipOnYAxis = false ); + WaterfallWipe( sal_Int32 nElements, bool flipOnYAxis ); virtual ::basegfx::B2DPolyPolygon operator () ( double t ) override; private: bool m_flipOnYAxis; |