svx/source/svdraw/svdhdl.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ad585357624ac6c58468f9985376c2cccf142997
Author:     Rashmi Rashmi <[email protected]>
AuthorDate: Wed Apr 15 14:12:55 2026 +0530
Commit:     Michael Weghorn <[email protected]>
CommitDate: Wed Apr 15 16:48:39 2026 +0200

    tdf#75280: svx: replace sal_IntPtr with appropriate integer type
    
    Change-Id: I59d904ef29fa1e08f7c18805fdc3a9b996cf350a
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/202940
    Reviewed-by: Michael Weghorn <[email protected]>
    Tested-by: Jenkins

diff --git a/svx/source/svdraw/svdhdl.cxx b/svx/source/svdraw/svdhdl.cxx
index df7f36320863..0d22b2bf01b9 100644
--- a/svx/source/svdraw/svdhdl.cxx
+++ b/svx/source/svdraw/svdhdl.cxx
@@ -2098,7 +2098,7 @@ void SdrHdlList::TravelFocusHdl(bool bForward)
     }
 
     // build new HdlNum
-    sal_uIntPtr nNewHdlNum(nNewHdl);
+    size_t nNewHdlNum(nNewHdl);
 
     // look for old num in sorted array
     if(nNewHdl != SAL_MAX_SIZE)

Reply via email to