diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-29 14:15:26 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-08-30 12:48:10 +0000 |
commit | 4e8ff25ff73c0175fb51d11eb4ca7157a3789e97 (patch) | |
tree | d193f104a2e47013ba93186efbcb19abb2ec80e7 /lotuswordpro | |
parent | 88c80411cb01ea4c73c533ac9efa8cc3e98e6954 (diff) |
loplugin:countusersofdefaultparams
Change-Id: I69f55593e6101906e0e97565f2cfc818852258dd
Reviewed-on: https://gerrit.libreoffice.org/28486
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'lotuswordpro')
4 files changed, 5 insertions, 5 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfindex.hxx b/lotuswordpro/source/filter/xfilter/xfindex.hxx index 71276172e6ac..1f958d7ab517 100644 --- a/lotuswordpro/source/filter/xfilter/xfindex.hxx +++ b/lotuswordpro/source/filter/xfilter/xfindex.hxx @@ -97,7 +97,7 @@ public: /** * @descr Add a tab entry in the template. */ - void AddTabEntry(enumXFTab type, double len, sal_Unicode leader, sal_Unicode delimiter, const OUString& styleName = ""); + void AddTabEntry(enumXFTab type, double len, sal_Unicode leader, sal_Unicode delimiter, const OUString& styleName); /** * @descr Add a entry in the template. diff --git a/lotuswordpro/source/filter/xfilter/xfliststyle.hxx b/lotuswordpro/source/filter/xfilter/xfliststyle.hxx index 6f6b33ae0610..88a5de6fc926 100644 --- a/lotuswordpro/source/filter/xfilter/xfliststyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfliststyle.hxx @@ -202,7 +202,7 @@ public: OUString const & bullet_char, const OUString& fontname, const OUString& prefix, - const OUString& suffix = "" + const OUString& suffix ); void SetListNumber( sal_Int32 level, XFNumFmt& numFmt, sal_Int16 nStartValue ); diff --git a/lotuswordpro/source/filter/xfilter/xfpagemaster.hxx b/lotuswordpro/source/filter/xfilter/xfpagemaster.hxx index f61f4910e761..9493e2df0a7c 100644 --- a/lotuswordpro/source/filter/xfilter/xfpagemaster.hxx +++ b/lotuswordpro/source/filter/xfilter/xfpagemaster.hxx @@ -85,7 +85,7 @@ public: void SetPageHeight(double height); - void SetMargins(double left, double right=-1,double top=-1, double bottom=-1); + void SetMargins(double left, double right, double top=-1, double bottom=-1); void SetPageUsage(enumXFPageUsage usage); @@ -107,7 +107,7 @@ public: void SetFootNoteSeparator(enumXFAlignType align, double width, - sal_Int32 lengthPercent = 25, + sal_Int32 lengthPercent, double spaceAbove = 0.1, double spaceBelow = 0.1, XFColor color=XFColor(0,0,0) diff --git a/lotuswordpro/source/filter/xfilter/xfparastyle.hxx b/lotuswordpro/source/filter/xfilter/xfparastyle.hxx index 3a41bf76845d..aa1f98bd93d6 100644 --- a/lotuswordpro/source/filter/xfilter/xfparastyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfparastyle.hxx @@ -133,7 +133,7 @@ public: between the border and the top of the text. * @param indent value of the padding. */ - void SetPadding(double left, double right, double top = -1, double bottom = -1); + void SetPadding(double left, double right, double top, double bottom); /** * @descr Set the Margins of the paragraph. |