diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-07 11:53:18 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-02-12 19:45:10 +0000 |
commit | 0c7f35277575fee8594737f5b2842dfac2c6d04f (patch) | |
tree | 23ec8864dcdd91dc4c6f4234380bd8f4695131a9 /idl | |
parent | da2efb3e14aa93be13dc4a88f0e41b7dc7948e15 (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 'idl')
-rw-r--r-- | idl/inc/bastype.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idl/inc/bastype.hxx b/idl/inc/bastype.hxx index 4c7b2da8fca6..94d6d4054710 100644 --- a/idl/inc/bastype.hxx +++ b/idl/inc/bastype.hxx @@ -65,7 +65,7 @@ public: friend SvStream& WriteSvint(SvStream & rStm, const Svint & r ) { SvUINT32::Write( rStm, (sal_uInt32)r.nVal ); rStm.WriteUInt8( r.bSet ); return rStm; } friend SvStream& operator >> (SvStream & rStm, Svint & r ) - { r.nVal = (int)SvUINT32::Read( rStm ); rStm >> r.bSet ; return rStm; } + { r.nVal = (int)SvUINT32::Read( rStm ); rStm.ReadUChar( r.bSet ); return rStm; } }; |