[Libreoffice-commits] core.git: starmath/source

Caolán McNamara caolanm at redhat.com
Sun Dec 3 09:31:05 UTC 2017


 starmath/source/eqnolefilehdr.hxx |    4 ++--
 starmath/source/mathtype.hxx      |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit e6e74b0609f3eb849f4ced0c6ca760f226625bc9
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Sat Dec 2 20:33:18 2017 +0000

    SotStorageStream->SvStream
    
    Change-Id: Id9b74f7c0dc2c688c1489960ba71a8c7c5675dba
    Reviewed-on: https://gerrit.libreoffice.org/45728
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

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();
 


More information about the Libreoffice-commits mailing list