diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-04-19 16:30:20 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-04-20 12:14:50 +0200 |
commit | 6e0ddf83cefe78b688fcca805ecfe55899432c56 (patch) | |
tree | e07fa8c56352522527a5cba8ea4998b4cbd199eb /svtools | |
parent | e6ddfdf040f88d19e5ec9b4d10b8cccd79155ad1 (diff) |
loplugin:constantparam
Change-Id: I4963987a63d82dfe086932307675f92deebb8883
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166316
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/svhtml/htmlout.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/svtools/source/svhtml/htmlout.cxx b/svtools/source/svhtml/htmlout.cxx index 5dd6b099ec9f..956546269708 100644 --- a/svtools/source/svhtml/htmlout.cxx +++ b/svtools/source/svhtml/htmlout.cxx @@ -880,8 +880,7 @@ SvStream& HTMLOutFuncs::OutScript( SvStream& rStrm, SvStream& HTMLOutFuncs::Out_Events( SvStream& rStrm, const SvxMacroTableDtor& rMacroTable, const HTMLOutEvent *pEventTable, - bool bOutStarBasic, - OUString *pNonConvertableChars ) + bool bOutStarBasic ) { sal_uInt16 i=0; while( pEventTable[i].pBasicName || pEventTable[i].pJavaName ) @@ -901,7 +900,7 @@ SvStream& HTMLOutFuncs::Out_Events( SvStream& rStrm, OString sOut = OString::Concat(" ") + pStr + "=\""; rStrm.WriteOString( sOut ); - Out_String( rStrm, pMacro->GetMacName(), pNonConvertableChars ).WriteChar( '\"' ); + Out_String( rStrm, pMacro->GetMacName(), /*pNonConvertableChars*/nullptr ).WriteChar( '\"' ); } } i++; |