diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-30 13:46:42 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-02-04 22:50:39 +0000 |
commit | 186b4ebc99a2e80740fee51f9d0276886a003617 (patch) | |
tree | a86a4ff5fe3cd36add7053212ef37531540be253 /include/svx/svdsob.hxx | |
parent | 95a7e952552adb834f92d1477f83938e7c8d0204 (diff) |
convert specialised SvStream::operator>> methods to ReadXXX methods
as preparation for converting the SvStream::operator>> methods on
primitive types
Change-Id: I62f134bced15c687d6e0d46924f56e8d1c3d95b9
Reviewed-on: https://gerrit.libreoffice.org/7798
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'include/svx/svdsob.hxx')
-rw-r--r-- | include/svx/svdsob.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/svdsob.hxx b/include/svx/svdsob.hxx index 18a15a716fb5..150d29a3dd73 100644 --- a/include/svx/svdsob.hxx +++ b/include/svx/svdsob.hxx @@ -91,7 +91,7 @@ public: void operator|=(const SetOfByte& r2ndSet); friend inline SvStream& WriteSetOfByte(SvStream& rOut, const SetOfByte& rSet); - friend inline SvStream& operator>>(SvStream& rIn, SetOfByte& rSet); + friend inline SvStream& ReadSetOfByte(SvStream& rIn, SetOfByte& rSet); // initialize this set with a uno sequence of sal_Int8 void PutValue(const com::sun::star::uno::Any & rAny); @@ -106,7 +106,7 @@ inline SvStream& WriteSetOfByte(SvStream& rOut, const SetOfByte& rSet) return rOut; } -inline SvStream& operator>>(SvStream& rIn, SetOfByte& rSet) +inline SvStream& ReadSetOfByte(SvStream& rIn, SetOfByte& rSet) { rIn.Read((char*)rSet.aData,32); return rIn; |