convert more SvStream::operator<< calls

.. to more explicit SvStream::Write* calls
This was done using another run of the clang rewriter, and then
a lot of hand tweaking to fix all the places where the rewriter
did not play nice with various macros.

Change-Id: I7bcab93851c8dfb59cde6bc76290c6484d88fb18
Reviewed-on: https://gerrit.libreoffice.org/7494
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
This commit is contained in:
Noel Grandin
2014-01-16 12:40:11 +02:00
committed by Michael Stahl
parent dd34ecba10
commit d803483f6a
60 changed files with 1248 additions and 1241 deletions

View File

@@ -1043,7 +1043,7 @@ static sal_Bool lcl_WriteSbxVariable( const SbxVariable& rVar, SvStream* pStrm,
{
pStrm->WriteUInt16( (sal_uInt16)eType ); // VarType Id
}
*pStrm << rVar.GetDouble();
pStrm->WriteDouble( rVar.GetDouble() );
break;
case SbxSTRING: