summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-12-02 20:33:18 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-12-03 10:30:01 +0100
commite6e74b0609f3eb849f4ced0c6ca760f226625bc9 (patch)
tree39156d6843d588bc5b08f8162f400aff7a19b506 /starmath
parent0c566771c433ec3c29b2bda7d9cb4efaf30e14e4 (diff)
SotStorageStream->SvStream
Change-Id: Id9b74f7c0dc2c688c1489960ba71a8c7c5675dba Reviewed-on: https://gerrit.libreoffice.org/45728 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/eqnolefilehdr.hxx4
-rw-r--r--starmath/source/mathtype.hxx4
2 files changed, 4 insertions, 4 deletions
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 );
diff --git a/starmath/source/mathtype.hxx b/starmath/source/mathtype.hxx
index 6bf10cba01ad..577196aac565 100644
--- a/starmath/source/mathtype.hxx
+++ b/starmath/source/mathtype.hxx
@@ -29,7 +29,7 @@ class SfxMedium;
class SmMatrixNode;
class SmNode;
class SotStorage;
-class SotStorageStream;
+class SvStream;
class MathTypeFont
{
@@ -105,7 +105,7 @@ private:
/*Ver 2 Header*/
sal_uInt8 nVersion;
- SotStorageStream *pS;
+ SvStream* pS;
void Init();