diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-06-10 15:58:28 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-06-10 21:14:20 +0200 |
commit | 95d91cd41e030a317b51a00086bf042282c8f9e1 (patch) | |
tree | aaa76be493c79a85581510a3f1312c69bc27f012 /sfx2 | |
parent | 3b5c92677708ab0135d63e1496b91054383c45b4 (diff) |
loplugin:constantparam
Change-Id: I8134744b6c1279c497d4763eddf614bb840f7f3f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135602
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/bastyp/frmhtmlw.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sfx2/source/bastyp/frmhtmlw.cxx b/sfx2/source/bastyp/frmhtmlw.cxx index d568b193040f..5569ab63996b 100644 --- a/sfx2/source/bastyp/frmhtmlw.cxx +++ b/sfx2/source/bastyp/frmhtmlw.cxx @@ -215,8 +215,7 @@ void SfxFrameHTMLWriter::Out_DocInfo( SvStream& rStrm, const OUString& rBaseURL, } void SfxFrameHTMLWriter::Out_FrameDescriptor( - SvStream& rOut, const OUString& rBaseURL, const uno::Reference < beans::XPropertySet >& xSet, - OUString *pNonConvertableChars ) + SvStream& rOut, const OUString& rBaseURL, const uno::Reference < beans::XPropertySet >& xSet ) { try { @@ -232,7 +231,7 @@ void SfxFrameHTMLWriter::Out_FrameDescriptor( rBaseURL, aURL ); sOut.append(" " OOO_STRING_SVTOOLS_HTML_O_src "=\""); rOut.WriteOString( sOut.makeStringAndClear() ); - HTMLOutFuncs::Out_String( rOut, aURL, pNonConvertableChars ); + HTMLOutFuncs::Out_String( rOut, aURL ); sOut.append('\"'); } } @@ -242,7 +241,7 @@ void SfxFrameHTMLWriter::Out_FrameDescriptor( { sOut.append(" " OOO_STRING_SVTOOLS_HTML_O_name "=\""); rOut.WriteOString( sOut.makeStringAndClear() ); - HTMLOutFuncs::Out_String( rOut, aStr, pNonConvertableChars ); + HTMLOutFuncs::Out_String( rOut, aStr ); sOut.append('\"'); } |