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/inc | |
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/inc')
-rw-r--r-- | xmloff/inc/PageMasterImportContext.hxx | 2 | ||||
-rw-r--r-- | xmloff/inc/SchXMLExport.hxx | 2 | ||||
-rw-r--r-- | xmloff/inc/XMLChartPropertySetMapper.hxx | 4 | ||||
-rw-r--r-- | xmloff/inc/txtflde.hxx | 2 | ||||
-rw-r--r-- | xmloff/inc/xexptran.hxx | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/xmloff/inc/PageMasterImportContext.hxx b/xmloff/inc/PageMasterImportContext.hxx index 06bbf7a9dd02..5b08ac8cd7bf 100644 --- a/xmloff/inc/PageMasterImportContext.hxx +++ b/xmloff/inc/PageMasterImportContext.hxx @@ -44,7 +44,7 @@ public: const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, SvXMLStylesContext& rStyles, - bool bDefaultStyle=false); + bool bDefaultStyle); virtual ~PageStyleContext() override; virtual SvXMLImportContext *CreateChildContext( diff --git a/xmloff/inc/SchXMLExport.hxx b/xmloff/inc/SchXMLExport.hxx index a4e1242b99d2..beb0d87443f2 100644 --- a/xmloff/inc/SchXMLExport.hxx +++ b/xmloff/inc/SchXMLExport.hxx @@ -53,7 +53,7 @@ public: SchXMLExport( const css::uno::Reference< css::uno::XComponentContext >& xContext, OUString const & implementationName, - SvXMLExportFlags nExportFlags = SvXMLExportFlags::ALL ); + SvXMLExportFlags nExportFlags ); virtual ~SchXMLExport() override; rtl::Reference< XMLPropertySetMapper > GetPropertySetMapper() const; diff --git a/xmloff/inc/XMLChartPropertySetMapper.hxx b/xmloff/inc/XMLChartPropertySetMapper.hxx index 588a4be0a090..f5cc42fd5f31 100644 --- a/xmloff/inc/XMLChartPropertySetMapper.hxx +++ b/xmloff/inc/XMLChartPropertySetMapper.hxx @@ -60,14 +60,14 @@ private: SvXMLExport& rExport, const XMLPropertyState& rProperty, SvXmlExportFlags nFlags, const ::std::vector< XMLPropertyState > *pProperties, - sal_uInt32 nIdx = 0 ) const override; + sal_uInt32 nIdx ) const override; /// this method is called for every item that has the MID_FLAG_SPECIAL_ITEM_EXPORT flag set virtual void handleSpecialItem( SvXMLAttributeList& rAttrList, const XMLPropertyState& rProperty, const SvXMLUnitConverter& rUnitConverter, const SvXMLNamespaceMap& rNamespaceMap, const ::std::vector< XMLPropertyState > *pProperties, - sal_uInt32 nIdx = 0 ) const override; + sal_uInt32 nIdx ) const override; public: XMLChartExportPropertyMapper( const rtl::Reference< XMLPropertySetMapper >& rMapper, diff --git a/xmloff/inc/txtflde.hxx b/xmloff/inc/txtflde.hxx index 595de0a277cf..4be936bfaf16 100644 --- a/xmloff/inc/txtflde.hxx +++ b/xmloff/inc/txtflde.hxx @@ -163,7 +163,7 @@ public: XMLTextFieldExport( SvXMLExport& rExp, /// XMLPropertyState for the combined characters field - XMLPropertyState* pCombinedCharState = nullptr ); + XMLPropertyState* pCombinedCharState ); virtual ~XMLTextFieldExport(); /// Export this field and the surrounding span element with the formatting. diff --git a/xmloff/inc/xexptran.hxx b/xmloff/inc/xexptran.hxx index 184158d906b6..129317e16d37 100644 --- a/xmloff/inc/xexptran.hxx +++ b/xmloff/inc/xexptran.hxx @@ -98,7 +98,7 @@ class SdXMLImExViewBox double mfH; public: - SdXMLImExViewBox(double fX = 0.0, double fY = 0.0, double fW = 1000.0, double fH = 1000.0); + SdXMLImExViewBox(double fX, double fY, double fW, double fH); SdXMLImExViewBox(const OUString& rNew, const SvXMLUnitConverter& rConv); double GetX() const { return mfX; } |