From 4210bba0b3b789e183cc362562c25730cc740577 Mon Sep 17 00:00:00 2001
From: Stephan Bergmann <sbergman@redhat.com>
Date: Thu, 16 Jan 2014 18:13:02 +0100
Subject: Missing adaption to WriteSvPersistBase

...introduced in c648d0872058941ed18499a8bf1993037d9b5532 "convert
SvStream::operator<< overloads to more explicit methods."

Change-Id: I8343cd3d1e92ccd3ca3fc6292ebd1114ada444e1
---
 tools/source/ref/pstm.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'tools')

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++;
         }
     }
-- 
cgit