summaryrefslogtreecommitdiff
path: root/starmath/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-06 16:28:57 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-07 11:05:02 +0200
commit60bbbcabed5ddf477a17970af79f464fc5e98753 (patch)
treeef1749616721f9f79264d7e653d5d23ab6c30955 /starmath/source
parentbb2174d86728a3aead640032745b1e781d7f818b (diff)
Remove SvStorageStream alias
Change-Id: I9d835e6032e2366e5357240609ff0e60273d475b
Diffstat (limited to 'starmath/source')
-rw-r--r--starmath/source/eqnolefilehdr.cxx2
-rw-r--r--starmath/source/eqnolefilehdr.hxx6
-rw-r--r--starmath/source/mathtype.hxx2
3 files changed, 5 insertions, 5 deletions
diff --git a/starmath/source/eqnolefilehdr.cxx b/starmath/source/eqnolefilehdr.cxx
index 7f3c2aa99459..ddd6e9593b9e 100644
--- a/starmath/source/eqnolefilehdr.cxx
+++ b/starmath/source/eqnolefilehdr.cxx
@@ -37,7 +37,7 @@ bool GetMathTypeVersion( SotStorage* pStor, sal_uInt8 &nVersion )
STREAM_STD_READ | StreamMode::NOCREATE);
if ( (!xSrc.Is()) || (SVSTREAM_OK != xSrc->GetError()))
return bSuccess;
- SvStorageStream *pS = &xSrc;
+ SotStorageStream *pS = &xSrc;
pS->SetEndian( SvStreamEndian::LITTLE );
EQNOLEFILEHDR aHdr;
diff --git a/starmath/source/eqnolefilehdr.hxx b/starmath/source/eqnolefilehdr.hxx
index 9d1587fcb4bc..2841a2c41218 100644
--- a/starmath/source/eqnolefilehdr.hxx
+++ b/starmath/source/eqnolefilehdr.hxx
@@ -23,7 +23,7 @@
#include <sal/types.h>
#include <sot/storage.hxx>
-class SvStorageStream;
+class SotStorageStream;
class SotStorage;
#define EQNOLEFILEHDR_SIZE 28
@@ -47,7 +47,7 @@ public:
sal_uInt32 nReserved3; // not used
sal_uInt32 nReserved4; // not used
- inline void Read(SvStorageStream *pS)
+ inline void Read(SotStorageStream *pS)
{
pS->ReadUInt16( nCBHdr );
pS->ReadUInt32( nVersion );
@@ -58,7 +58,7 @@ public:
pS->ReadUInt32( nReserved3 );
pS->ReadUInt32( nReserved4 );
}
- inline void Write(SvStorageStream *pS)
+ inline void Write(SotStorageStream *pS)
{
pS->WriteUInt16( nCBHdr );
pS->WriteUInt32( nVersion );
diff --git a/starmath/source/mathtype.hxx b/starmath/source/mathtype.hxx
index a5698320e5cb..bccb190b1af0 100644
--- a/starmath/source/mathtype.hxx
+++ b/starmath/source/mathtype.hxx
@@ -120,7 +120,7 @@ private:
sal_uInt8 nProdVersion;
sal_uInt8 nProdSubVersion;
- SvStorageStream *pS;
+ SotStorageStream *pS;
void Init();