summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-04-19 16:30:20 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-04-20 12:14:50 +0200
commit6e0ddf83cefe78b688fcca805ecfe55899432c56 (patch)
treee07fa8c56352522527a5cba8ea4998b4cbd199eb /svtools
parente6ddfdf040f88d19e5ec9b4d10b8cccd79155ad1 (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.cxx5
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++;