tools/source/ref/pstm.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 4210bba0b3b789e183cc362562c25730cc740577 Author: Stephan Bergmann <[email protected]> Date: Thu Jan 16 18:13:02 2014 +0100 Missing adaption to WriteSvPersistBase ...introduced in c648d0872058941ed18499a8bf1993037d9b5532 "convert SvStream::operator<< overloads to more explicit methods." Change-Id: I8343cd3d1e92ccd3ca3fc6292ebd1114ada444e1 diff --git a/tools/source/ref/pstm.cxx b/tools/source/ref/pstm.cxx index c84a0b0..2f20664 100644 --- a/tools/source/ref/pstm.cxx +++ b/tools/source/ref/pstm.cxx @@ -66,7 +66,7 @@ void TOOLS_DLLPUBLIC WritePersistListObjects(const SvPersistListWriteable& rList SvPersistBase * pObj = rList.GetPersistBase( n ); if( !bOnlyStreamed || rStm.IsStreamed( pObj ) ) { // Object should be stored - rStm << pObj; + WriteSvPersistBase(rStm, pObj); nWriteCount++; } } _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
