helpcontent2 | 2 +- vcl/source/pdf/pdfwriterimpl_utils.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit ce5a499ebbde657d4a63a48a4291452966b7d3c9 Author: Christopher Sherlock <[email protected]> AuthorDate: Fri Sep 19 01:41:04 2025 +1000 Commit: Michael Weghorn <[email protected]> CommitDate: Mon Jan 12 15:29:12 2026 +0100 vcl: make nInt const Change-Id: I1ecb99bc6bae217d036384ce42a9f8dbcc8ca8b1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191150 Reviewed-by: Michael Weghorn <[email protected]> Tested-by: Jenkins diff --git a/vcl/source/pdf/pdfwriterimpl_utils.cxx b/vcl/source/pdf/pdfwriterimpl_utils.cxx index 3dfbaa91c919..f8a8bce60617 100644 --- a/vcl/source/pdf/pdfwriterimpl_utils.cxx +++ b/vcl/source/pdf/pdfwriterimpl_utils.cxx @@ -102,7 +102,7 @@ void appendFixedInt( sal_Int32 nValue, OStringBuffer& rBuffer ) while( nDiv-- ) nFactor *= 10; - sal_Int32 nInt = nValue / nFactor; + const sal_Int32 nInt = nValue / nFactor; rBuffer.append( nInt ); if (nFactor > 1 && nValue % nFactor) { @@ -129,7 +129,7 @@ void appendColor( const Color& rColor, OStringBuffer& rBuffer, bool bConvertToGr if( bConvertToGrey ) { - sal_uInt8 cByte = rColor.GetLuminance(); + const sal_uInt8 cByte = rColor.GetLuminance(); appendDouble( cByte / 255.0, rBuffer ); } else commit 7a1cf7c9a8668b04c632b485814c5dd33235cbf8 Author: Andrea Gelmini <[email protected]> AuthorDate: Mon Jan 12 15:29:03 2026 +0100 Commit: Gerrit Code Review <[email protected]> CommitDate: Mon Jan 12 15:29:03 2026 +0100 Update git submodules * Update helpcontent2 from branch 'master' to 99363552d1796e9e99c38860abd3e86cf35273ef - Fix typo Change-Id: I4baee2f59ee95bed223614a5a8993f2c43b2a096 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/197097 Reviewed-by: Jean-Pierre Ledure <[email protected]> Tested-by: Jenkins diff --git a/helpcontent2 b/helpcontent2 index 14de64ed7e08..99363552d179 160000 --- a/helpcontent2 +++ b/helpcontent2 @@ -1 +1 @@ -Subproject commit 14de64ed7e0895499276783d83433494e0cf3f78 +Subproject commit 99363552d1796e9e99c38860abd3e86cf35273ef
