[Libreoffice-commits] core.git: idl/source

Emircan Agac (via logerrit) logerrit at kemper.freedesktop.org
Fri Aug 13 08:44:31 UTC 2021


 idl/source/objects/basobj.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c7685f030fe39ff25c4ad30bc94e28ead7476934
Author:     Emircan Agac <thesadson at gmail.com>
AuthorDate: Wed Aug 11 19:40:22 2021 +0300
Commit:     Michael Stahl <michael.stahl at allotropia.de>
CommitDate: Fri Aug 13 10:43:58 2021 +0200

    tdf#114441:Convert use of sal_uLong to better integer types
    
    Change-Id: I14cfc4113e9aff0fcff3b2d3c2b0444aad8934ae
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120332
    Tested-by: Jenkins
    Reviewed-by: Hossein <hossein at libreoffice.org>
    Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas at libreoffice.org>

diff --git a/idl/source/objects/basobj.cxx b/idl/source/objects/basobj.cxx
index 6ec830a6f739..551e002d046a 100644
--- a/idl/source/objects/basobj.cxx
+++ b/idl/source/objects/basobj.cxx
@@ -43,7 +43,7 @@ void SvMetaObject::WriteStars( SvStream & rOutStm )
 void SvMetaObject::Back2Delimiter( SvStream & rOutStm )
 {
     // write no empty brackets
-    sal_uLong nPos = rOutStm.Tell();
+    sal_uInt64 nPos = rOutStm.Tell();
     rOutStm.SeekRel( -1 );
     char c = 0;
     rOutStm.ReadChar( c );


More information about the Libreoffice-commits mailing list