diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-16 18:13:02 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-16 18:13:02 +0100 |
commit | 4210bba0b3b789e183cc362562c25730cc740577 (patch) | |
tree | a976f4cd93b3d95efb873e31fefdc8e781b37d98 /tools | |
parent | 4bddd280f204f1036f9933a4b683a0b20a7d85a0 (diff) |
Missing adaption to WriteSvPersistBase
...introduced in c648d0872058941ed18499a8bf1993037d9b5532 "convert
SvStream::operator<< overloads to more explicit methods."
Change-Id: I8343cd3d1e92ccd3ca3fc6292ebd1114ada444e1
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/ref/pstm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/ref/pstm.cxx b/tools/source/ref/pstm.cxx index c84a0b03c783..2f20664b56c6 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++; } } |