From e6e74b0609f3eb849f4ced0c6ca760f226625bc9 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 2 Dec 2017 20:33:18 +0000 Subject: SotStorageStream->SvStream MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Id9b74f7c0dc2c688c1489960ba71a8c7c5675dba Reviewed-on: https://gerrit.libreoffice.org/45728 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- starmath/source/eqnolefilehdr.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'starmath/source/eqnolefilehdr.hxx') diff --git a/starmath/source/eqnolefilehdr.hxx b/starmath/source/eqnolefilehdr.hxx index a440c64960bc..119c2e19c960 100644 --- a/starmath/source/eqnolefilehdr.hxx +++ b/starmath/source/eqnolefilehdr.hxx @@ -44,7 +44,7 @@ public: sal_uInt32 nReserved3; // not used sal_uInt32 nReserved4; // not used - void Read(SotStorageStream *pS) + void Read(SvStream* pS) { pS->ReadUInt16( nCBHdr ); pS->ReadUInt32( nVersion ); @@ -55,7 +55,7 @@ public: pS->ReadUInt32( nReserved3 ); pS->ReadUInt32( nReserved4 ); } - void Write(SotStorageStream *pS) + void Write(SvStream* pS) { pS->WriteUInt16( nCBHdr ); pS->WriteUInt32( nVersion ); -- cgit