sd/source/ui/func/fuinsfil.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 24c13e42149f308433c9e750e6143d587f7f2750 Author: Ethan Garcia <[email protected]> AuthorDate: Sat Mar 21 13:17:44 2026 -0700 Commit: Ilmari Lauhakangas <[email protected]> CommitDate: Sun Mar 22 16:55:28 2026 +0100 tdf#114441 replace sal_uLong with sal_Int32 in fuinsfil.cxx Change-Id: I5951abdd84606f5a1460e74a5c3faa0cf5a1d7fe Reviewed-on: https://gerrit.libreoffice.org/c/core/+/202332 Reviewed-by: Ilmari Lauhakangas <[email protected]> Tested-by: Jenkins diff --git a/sd/source/ui/func/fuinsfil.cxx b/sd/source/ui/func/fuinsfil.cxx index 9ee4cdf26075..6a785eae6c02 100644 --- a/sd/source/ui/func/fuinsfil.cxx +++ b/sd/source/ui/func/fuinsfil.cxx @@ -473,7 +473,7 @@ void FuInsertFile::InsTextOrRTFinDrMode(SfxMedium* pMedium) while ( aOutliner.GetParagraphCount() > 1 ) { Paragraph* pPara = aOutliner.GetParagraph( 0 ); - sal_uLong nLen = aOutliner.GetText( pPara ).getLength(); + sal_Int32 nLen = aOutliner.GetText( pPara ).getLength(); aOutliner.QuickInsertLineBreak(ESelection(0, nLen, 1, 0)); } }
