diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-05-11 15:53:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-12 19:34:14 +0200 |
commit | 05d3a1899eb50202fd3929b702bae1003b5610be (patch) | |
tree | ba2acb1ed6802f49ea618746e95d9017dbe8372f /svtools/source/urlobj | |
parent | cffc5a04661fc0a84dff9fa5da954236d88a8b38 (diff) |
tdf#75280 replace uses of sal_uLong
those vars get their type from SvStream which uses sal_uInt64
Change-Id: Ia356699bb0f5e9787ae6f02e52e0b00cc2f817b1
Reviewed-on: https://gerrit.libreoffice.org/37547
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools/source/urlobj')
-rw-r--r-- | svtools/source/urlobj/inetimg.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/svtools/source/urlobj/inetimg.cxx b/svtools/source/urlobj/inetimg.cxx index df3f7a210970..0abae28c90dd 100644 --- a/svtools/source/urlobj/inetimg.cxx +++ b/svtools/source/urlobj/inetimg.cxx @@ -94,7 +94,8 @@ bool INetImage::Read( SvStream& rIStm, SotClipboardFormatId nFormat ) sal_Char pImageURL[1]; // Append all variable-length strings starting here */ rtl_TextEncoding eSysCSet = osl_getThreadTextEncoding(); - sal_Int32 nVal, nAnchorOffset, nAltOffset, nFilePos; + sal_Int32 nVal, nAnchorOffset, nAltOffset; + sal_uInt64 nFilePos; nFilePos = rIStm.Tell(); // skip over iSize (int), bIsMao ( sal_Bool ) alignment of 4 !!!! |