summaryrefslogtreecommitdiff
path: root/include/oox/ole/vbaexport.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/ole/vbaexport.hxx')
-rw-r--r--include/oox/ole/vbaexport.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/oox/ole/vbaexport.hxx b/include/oox/ole/vbaexport.hxx
index 071b23bccf27..fed4b797c7a7 100644
--- a/include/oox/ole/vbaexport.hxx
+++ b/include/oox/ole/vbaexport.hxx
@@ -53,7 +53,7 @@ class VBACompressionChunk
{
public:
- VBACompressionChunk(SvStream& rCompressedStream, const sal_uInt8* pData, sal_Size nChunkSize);
+ VBACompressionChunk(SvStream& rCompressedStream, const sal_uInt8* pData, std::size_t nChunkSize);
void write();
@@ -63,7 +63,7 @@ private:
sal_uInt8* mpCompressedChunkStream;
// same as DecompressedChunkEnd in the spec
- sal_Size mnChunkSize;
+ std::size_t mnChunkSize;
// CompressedCurrent according to the spec
sal_uInt64 mnCompressedCurrent;