diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-19 17:50:26 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-19 17:50:26 +0200 |
commit | 788638af33d878d4520606251f8c71783f3df0ec (patch) | |
tree | 89e8e1dc2dae4e9f7e54e205e93aa0fc7040a386 /lotuswordpro | |
parent | 71b4afde119caa3fba6082f6ef9c5c4a880047a9 (diff) |
loplugin:defaultparams
Change-Id: I1ba43b13070ccd0f80b63f1b9a29ff70fb02794f
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpfont.cxx | 2 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwptools.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwpfont.cxx b/lotuswordpro/source/filter/lwpfont.cxx index 3ee7e1b5ecb1..040e1d748eae 100644 --- a/lotuswordpro/source/filter/lwpfont.cxx +++ b/lotuswordpro/source/filter/lwpfont.cxx @@ -94,7 +94,7 @@ void LwpFontAttrEntry::Override( rtl::Reference<XFFont> const & pFont ) if (IsSuperOverridden()) { if(Is(SUPERSCRIPT)) - pFont->SetPosition(true); + pFont->SetPosition(); } if (IsSubOverridden()) diff --git a/lotuswordpro/source/filter/lwptools.cxx b/lotuswordpro/source/filter/lwptools.cxx index 6c2a3c196353..620290520fda 100644 --- a/lotuswordpro/source/filter/lwptools.cxx +++ b/lotuswordpro/source/filter/lwptools.cxx @@ -323,7 +323,7 @@ XFDateStyle* LwpTools::GetSystemDateStyle(bool bLongFormat) if (j==1) pDateStyle->AddMonth(false); else if (j==2) - pDateStyle->AddMonth(true); + pDateStyle->AddMonth(); else if (j==3) pDateStyle->AddMonth(false,true); else |