summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/ww8graf2.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/ww8/ww8graf2.cxx')
-rw-r--r--sw/source/filter/ww8/ww8graf2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8graf2.cxx b/sw/source/filter/ww8/ww8graf2.cxx
index e4a5f382c59b..04b5394408a5 100644
--- a/sw/source/filter/ww8/ww8graf2.cxx
+++ b/sw/source/filter/ww8/ww8graf2.cxx
@@ -444,10 +444,10 @@ void SwWW8ImplReader::PicRead(SvStream *pDataStream, WW8_PIC *pPic,
{
//Only the first 0x2e bytes are the same between version 6/7 and 8+
WW8_PIC_SHADOW aPicS;
- pDataStream->Read( &aPicS, sizeof( aPicS ) );
+ pDataStream->ReadBytes( &aPicS, sizeof( aPicS ) );
WW8PicShadowToReal( &aPicS, pPic );
for (WW8_BRC & i : pPic->rgbrc)
- pDataStream->Read( &i, bVer67 ? 2 : 4);
+ pDataStream->ReadBytes(&i, bVer67 ? 2 : 4);
pDataStream->ReadInt16( pPic->dxaOrigin );
pDataStream->ReadInt16( pPic->dyaOrigin );
if (!bVer67)