diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-05-02 18:06:32 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-05-03 08:38:12 +0200 |
commit | 13e49b4690f873b06175fe7b15454cba3c1e7a67 (patch) | |
tree | 83a373eec6ee54297481f4ccaee09893c054073d /svtools | |
parent | 6f35a3a7c0549fc5803522a3fdd02da97276fadc (diff) |
sal_uLong->sal_uInt32 in HTMLOutFuncs
Change-Id: I112ac7c3eedcab912e54fb226c6253d88d64b6fd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115003
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/svhtml/htmlout.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/svhtml/htmlout.cxx b/svtools/source/svhtml/htmlout.cxx index c75d293b6f77..b39609ad38d8 100644 --- a/svtools/source/svhtml/htmlout.cxx +++ b/svtools/source/svhtml/htmlout.cxx @@ -562,7 +562,7 @@ SvStream& HTMLOutFuncs::FlushToAscii( SvStream& rStream, return rStream; } -SvStream& HTMLOutFuncs::Out_Hex( SvStream& rStream, sal_uLong nHex, sal_uInt8 nLen ) +SvStream& HTMLOutFuncs::Out_Hex( SvStream& rStream, sal_uInt32 nHex, sal_uInt8 nLen ) { // out into a stream char aNToABuf[] = "0000000000000000"; @@ -926,7 +926,7 @@ SvStream& HTMLOutFuncs::Out_Events( SvStream& rStrm, OString HTMLOutFuncs::CreateTableDataOptionsValNum( bool bValue, - double fVal, sal_uLong nFormat, SvNumberFormatter& rFormatter, + double fVal, sal_uInt32 nFormat, SvNumberFormatter& rFormatter, rtl_TextEncoding eDestEnc, OUString* pNonConvertableChars) { OStringBuffer aStrTD; |