sd/source/ui/view/Outliner.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 142e782065deb3dbcc73e8a32668eb27effb97f2 Author: Liam Connors <[email protected]> AuthorDate: Sun Mar 22 16:22:01 2026 -0700 Commit: Ilmari Lauhakangas <[email protected]> CommitDate: Wed Mar 25 15:16:21 2026 +0100 tdf#114441 replace sal_uLong with sal_Int32 nMatchCount assigned from StartSearchAndReplace(...) which returns sal_Int32. Change-Id: Iab5dbd74eb1785206d58f08b7004721c1e3e028d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/202392 Tested-by: Jenkins Reviewed-by: Ilmari Lauhakangas <[email protected]> diff --git a/sd/source/ui/view/Outliner.cxx b/sd/source/ui/view/Outliner.cxx index de496a215ef2..455d3569bfbb 100644 --- a/sd/source/ui/view/Outliner.cxx +++ b/sd/source/ui/view/Outliner.cxx @@ -868,7 +868,7 @@ bool SdOutliner::SearchAndReplaceOnce(std::vector<sd::SearchSelection>* pSelecti auto& rVectorGraphicSearchContext = mpImpl->getVectorGraphicSearchContext(); if (nullptr != dynamic_cast<const sd::DrawViewShell*>(pViewShell.get())) { - sal_uLong nMatchCount = 0; + sal_Int32 nMatchCount = 0; if (rVectorGraphicSearchContext.mbCurrentIsVectorGraphic) {
