diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-17 08:48:50 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-01-22 22:00:47 +0000 |
commit | 16a2e903356520c90a9bf91c47265f79be12e74a (patch) | |
tree | fe696998dc937562003b0d4273ded896df1ba5f5 /include/svl | |
parent | d803483f6a5938b0d0708b8db74b30c511dd8e31 (diff) |
remove SvStream::operator<< methods
.. and convert the last few places still using those methods.
Change-Id: Id2cd8f9c0dd281df43af439d4fef65881f34a6fd
Reviewed-on: https://gerrit.libreoffice.org/7495
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/filerec.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svl/filerec.hxx b/include/svl/filerec.hxx index 3cc9248a8476..b7aca769a8bf 100644 --- a/include/svl/filerec.hxx +++ b/include/svl/filerec.hxx @@ -601,7 +601,7 @@ inline SfxMiniRecordWriter::SfxMiniRecordWriter( SvStream* pStream, sal_uInt8 nT DBG(_nStartPos = pStream->Tell()); DBG( DbgOutf( "SfxFileRec: writing record to %ul", _nStartPos ) ); - *pStream << ( ( nTag << 24 ) | nSize ); + pStream->WriteUInt32( ( nTag << 24 ) | nSize ); } /** The destructor closes the record automatically if not done earlier */ |