diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-07-31 14:31:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-31 19:16:06 +0200 |
commit | 9ae4f8b5bf70a693ffb60ceac4f9625cf15b1181 (patch) | |
tree | c8b0e773f467325595bcc7d8a40c744ab6768430 /sd/source | |
parent | ca7dab5d96e73b7b4b045e2460e0b2ee150757db (diff) |
getArray->getConstArray
Change-Id: I951dd4a02c9ead98e7eb13ae2995ba2e1e57b38a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119740
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/filter/sdpptwrp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/sdpptwrp.cxx b/sd/source/filter/sdpptwrp.cxx index 90f851e69fa4..d44b2fab2580 100644 --- a/sd/source/filter/sdpptwrp.cxx +++ b/sd/source/filter/sdpptwrp.cxx @@ -339,7 +339,7 @@ bool SdPPTFilter::Export() } Sequence<sal_Int8> aStreamContent; aStreamData.Value >>= aStreamContent; - size_t nBytesWritten = pStream->WriteBytes(aStreamContent.getArray(), aStreamContent.getLength()); + size_t nBytesWritten = pStream->WriteBytes(aStreamContent.getConstArray(), aStreamContent.getLength()); if (nBytesWritten != static_cast<size_t>(aStreamContent.getLength())) { bRet = false; |