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 /sc/inc/bigrange.hxx | |
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 'sc/inc/bigrange.hxx')
-rw-r--r-- | sc/inc/bigrange.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/bigrange.hxx b/sc/inc/bigrange.hxx index 5166d838b2a4..b3010118f0d4 100644 --- a/sc/inc/bigrange.hxx +++ b/sc/inc/bigrange.hxx @@ -140,7 +140,7 @@ inline SvStream& WriteScBigAddress( SvStream& rStream, const ScBigAddress& rAdr inline SvStream& ReadScBigAddress( SvStream& rStream, ScBigAddress& rAdr ) { - rStream >> rAdr.nCol >> rAdr.nRow >> rAdr.nTab; + rStream.ReadInt32( rAdr.nCol ).ReadInt32( rAdr.nRow ).ReadInt32( rAdr.nTab ); return rStream; } |