diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-14 09:02:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-14 08:47:48 +0000 |
commit | 0ea50b5b43a934f2ab080f50585e386ebce0b805 (patch) | |
tree | 44ab55a29143ba8427c9caad43449869a4709679 /xmloff/source/draw | |
parent | 20a9e101d909cb1953101e5962b74731e1265400 (diff) |
loplugin:countusersofdefaultparams in xmloff
Change-Id: Ia92a878ac97b3cc668594946e77a718f27a3e3ed
Reviewed-on: https://gerrit.libreoffice.org/28890
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/source/draw')
-rw-r--r-- | xmloff/source/draw/sdpropls.hxx | 6 | ||||
-rw-r--r-- | xmloff/source/draw/sdxmlexp_impl.hxx | 2 | ||||
-rw-r--r-- | xmloff/source/draw/shapeimport.cxx | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/draw/sdpropls.hxx b/xmloff/source/draw/sdpropls.hxx index 5e91313efdfa..5db630c0c870 100644 --- a/xmloff/source/draw/sdpropls.hxx +++ b/xmloff/source/draw/sdpropls.hxx @@ -93,7 +93,7 @@ public: const XMLPropertyState& rProperty, SvXmlExportFlags nFlags, const ::std::vector< XMLPropertyState >* pProperties, - sal_uInt32 nIdx = 0 + sal_uInt32 nIdx ) const override; void SetAutoStyles( bool bIsInAutoStyles ) { mbIsInAutoStyles = bIsInAutoStyles; } @@ -104,7 +104,7 @@ public: const SvXMLUnitConverter& rUnitConverter, const SvXMLNamespaceMap& rNamespaceMap, const ::std::vector< XMLPropertyState > *pProperties, - sal_uInt32 nIdx = 0 ) const override; + sal_uInt32 nIdx ) const override; }; class XMLPageExportPropertyMapper : public SvXMLExportPropertyMapper @@ -126,7 +126,7 @@ public: const XMLPropertyState& rProperty, SvXmlExportFlags nFlags, const ::std::vector< XMLPropertyState >* pProperties, - sal_uInt32 nIdx = 0 + sal_uInt32 nIdx ) const override; }; diff --git a/xmloff/source/draw/sdxmlexp_impl.hxx b/xmloff/source/draw/sdxmlexp_impl.hxx index 3764ceebb54e..b4c3ea02c426 100644 --- a/xmloff/source/draw/sdxmlexp_impl.hxx +++ b/xmloff/source/draw/sdxmlexp_impl.hxx @@ -162,7 +162,7 @@ public: SdXMLExport( const css::uno::Reference< css::uno::XComponentContext >& xContext, OUString const & implementationName, - bool bIsDraw, SvXMLExportFlags nExportFlags = SvXMLExportFlags::ALL ); + bool bIsDraw, SvXMLExportFlags nExportFlags ); virtual ~SdXMLExport() override; void SetProgress(sal_Int32 nProg); diff --git a/xmloff/source/draw/shapeimport.cxx b/xmloff/source/draw/shapeimport.cxx index 5738e703fa9e..f36da5f7d3ff 100644 --- a/xmloff/source/draw/shapeimport.cxx +++ b/xmloff/source/draw/shapeimport.cxx @@ -721,7 +721,7 @@ public: sal_Int32 mnCurrentZ; std::shared_ptr<ShapeSortContext> mpParentContext; - ShapeSortContext( uno::Reference< drawing::XShapes >& rShapes, std::shared_ptr<ShapeSortContext> pParentContext = nullptr ); + ShapeSortContext( uno::Reference< drawing::XShapes >& rShapes, std::shared_ptr<ShapeSortContext> pParentContext ); void popGroupAndSort(); private: |