summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorPelin Kuran <pelinrkuran@gmail.com>2020-02-23 09:40:55 +0300
committerMichael Stahl <michael.stahl@cib.de>2020-02-24 11:04:00 +0100
commit7fe377593e77c4ada5725e5e0d9acfdacbd70f57 (patch)
tree57f0c5853d057aeddbd875f13a992080dd77f522 /sc/inc
parent4f1e3dd278d6c65b8b1b198562d1649bad79622b (diff)
tdf#114441: Convert use of sal_uLong to better integer types
Change-Id: I9d0e6cf0a638866ac11ea9b3ac4a840f5c0a241d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89295 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/rechead.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/inc/rechead.hxx b/sc/inc/rechead.hxx
index aa5cccca14d8..53ccca673899 100644
--- a/sc/inc/rechead.hxx
+++ b/sc/inc/rechead.hxx
@@ -54,9 +54,9 @@ private:
pBuf;
std::unique_ptr<SvMemoryStream>
pMemStream;
- sal_uLong nEndPos;
- sal_uLong nEntryEnd;
- sal_uLong nTotalEnd;
+ sal_uInt64 nEndPos;
+ sal_uInt64 nEntryEnd;
+ sal_uInt64 nTotalEnd;
public:
ScMultipleReadHeader(SvStream& rNewStream);
@@ -64,7 +64,7 @@ public:
void StartEntry();
void EndEntry();
- sal_uLong BytesLeft() const;
+ sal_uInt64 BytesLeft() const;
};
class ScMultipleWriteHeader
@@ -72,9 +72,9 @@ class ScMultipleWriteHeader
private:
SvStream& rStream;
SvMemoryStream aMemStream;
- sal_uLong nDataPos;
+ sal_uInt64 nDataPos;
sal_uInt32 nDataSize;
- sal_uLong nEntryStart;
+ sal_uInt64 nEntryStart;
public:
ScMultipleWriteHeader(SvStream& rNewStream);