summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-07 11:53:18 +0200
committerMichael Stahl <mstahl@redhat.com>2014-02-12 19:45:10 +0000
commit0c7f35277575fee8594737f5b2842dfac2c6d04f (patch)
tree23ec8864dcdd91dc4c6f4234380bd8f4695131a9 /starmath
parentda2efb3e14aa93be13dc4a88f0e41b7dc7948e15 (diff)
remove SvStream::operator>> methods
in favour of ReadXXX methods. Change-Id: Ic2c0a7b6b92ff4c236ae99b39d77f3d935b301e3 Reviewed-on: https://gerrit.libreoffice.org/7915 Tested-by: Michael Stahl <mstahl@redhat.com> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/eqnolefilehdr.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/starmath/source/eqnolefilehdr.hxx b/starmath/source/eqnolefilehdr.hxx
index 000a72bb3431..e2704b878a32 100644
--- a/starmath/source/eqnolefilehdr.hxx
+++ b/starmath/source/eqnolefilehdr.hxx
@@ -47,14 +47,14 @@ public:
inline void Read(SvStorageStream *pS)
{
- *pS >> nCBHdr;
- *pS >> nVersion;
- *pS >> nCf;
- *pS >> nCBObject;
- *pS >> nReserved1;
- *pS >> nReserved2;
- *pS >> nReserved3;
- *pS >> nReserved4;
+ pS->ReadUInt16( nCBHdr );
+ pS->ReadUInt32( nVersion );
+ pS->ReadUInt16( nCf );
+ pS->ReadUInt32( nCBObject );
+ pS->ReadUInt32( nReserved1 );
+ pS->ReadUInt32( nReserved2 );
+ pS->ReadUInt32( nReserved3 );
+ pS->ReadUInt32( nReserved4 );
}
inline void Write(SvStorageStream *pS)
{