summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/WW8FFData.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-06-03 14:45:59 +0200
committerMichael Stahl <mstahl@redhat.com>2016-06-06 18:09:11 +0000
commit62d270116bf34778bf581f21b27fa9cdbff7de0e (patch)
tree0402df0506ab8f6825ef497f27426f01d2e01850 /sw/source/filter/ww8/WW8FFData.cxx
parentd0bc637426060593046c8d3a4d01d0b05b052cc5 (diff)
tools: rename SvStream::Read/Write to ReadBytes/WriteBytes
Change-Id: Ib788a30d413436aa03f813aa2fddcbc4d6cd2f9a Reviewed-on: https://gerrit.libreoffice.org/25972 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sw/source/filter/ww8/WW8FFData.cxx')
-rw-r--r--sw/source/filter/ww8/WW8FFData.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/ww8/WW8FFData.cxx b/sw/source/filter/ww8/WW8FFData.cxx
index 59d011396c1b..a0cf156cb6dc 100644
--- a/sw/source/filter/ww8/WW8FFData.cxx
+++ b/sw/source/filter/ww8/WW8FFData.cxx
@@ -89,7 +89,7 @@ void WW8FFData::Write(SvStream * pDataStrm)
0,0,0,0,0,0,0,0,0,0,0,0,0,0
};
- pDataStrm->Write( aHeader, sizeof(aHeader) );
+ pDataStrm->WriteBytes(aHeader, sizeof(aHeader));
sal_uInt8 aData[10] = {
0xff, 0xff, 0xff, 0xff,
@@ -123,7 +123,7 @@ void WW8FFData::Write(SvStream * pDataStrm)
aData[8] = ::sal::static_int_cast<sal_uInt8>(mnCheckboxHeight & 0xffff);
aData[9] = ::sal::static_int_cast<sal_uInt8>(mnCheckboxHeight >> 8);
- pDataStrm->Write(aData, sizeof(aData));
+ pDataStrm->WriteBytes(aData, sizeof(aData));
WriteOUString(pDataStrm, msName, true);
@@ -141,7 +141,7 @@ void WW8FFData::Write(SvStream * pDataStrm)
if (mnType == 2)
{
sal_uInt8 aData1[2] = { 0xff, 0xff };
- pDataStrm->Write(aData1, sizeof(aData1));
+ pDataStrm->WriteBytes(aData1, sizeof(aData1));
sal_uInt32 nListboxEntries = msListEntries.size();
pDataStrm->WriteUInt32( nListboxEntries );