summaryrefslogtreecommitdiff
path: root/oox/source/ole/vbaexport.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/ole/vbaexport.cxx')
-rw-r--r--oox/source/ole/vbaexport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/ole/vbaexport.cxx b/oox/source/ole/vbaexport.cxx
index 5beddc384061..d4e6a9f5716e 100644
--- a/oox/source/ole/vbaexport.cxx
+++ b/oox/source/ole/vbaexport.cxx
@@ -177,7 +177,7 @@ void VBACompressionChunk::write()
sal_uInt16 nHeader = handleHeader(true);
setUInt16(pCompressedChunkStream, 0, nHeader);
// copy the compressed stream to our output stream
- mrCompressedStream.Write(pCompressedChunkStream, mnCompressedCurrent);
+ mrCompressedStream.WriteBytes(pCompressedChunkStream, mnCompressedCurrent);
}
}
@@ -356,7 +356,7 @@ void VBACompressionChunk::writeRawChunk()
{
// we need to use up to 4096 bytes of the original stream
// and fill the rest with padding
- mrCompressedStream.Write(mpUncompressedData, mnChunkSize);
+ mrCompressedStream.WriteBytes(mpUncompressedData, mnChunkSize);
sal_Size nPadding = 4096 - mnChunkSize;
for (size_t i = 0; i < nPadding; ++i)
{