From c648d0872058941ed18499a8bf1993037d9b5532 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 14 Jan 2014 13:52:54 +0200 Subject: convert SvStream::operator<< overloads to more explicit methods This is in preparation for more conversion of SvStream::operator<< calls to use more explicit method names. This converts the subclasses that have their own convenience overloads of operator<< to use normal methods. Change-Id: I5efd5d9a24c264cb86d2471303dd5849bf91ba80 --- idl/source/prj/database.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'idl/source/prj/database.cxx') diff --git a/idl/source/prj/database.cxx b/idl/source/prj/database.cxx index b42c5728930c..1439ce7a1fb4 100644 --- a/idl/source/prj/database.cxx +++ b/idl/source/prj/database.cxx @@ -144,10 +144,10 @@ void SvIdlDataBase::Save( SvStream & rStm, sal_uInt32 nFlags ) if( !pModule->IsImported() ) aList.insert( pModule->GetClassList() ); } - aPStm << aList; + WriteSvDeclPersistList( aPStm, aList ); } else - aPStm << aClassList; + WriteSvDeclPersistList( aPStm, aClassList ); aTypeList.WriteObjects( aPStm, bOnlyStreamedObjs ); aAttrList.WriteObjects( aPStm, bOnlyStreamedObjs ); -- cgit