diff options
Diffstat (limited to 'svx/source/gallery2/galobj.cxx')
-rw-r--r-- | svx/source/gallery2/galobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/gallery2/galobj.cxx b/svx/source/gallery2/galobj.cxx index 09bf8b40384b..2f078021059a 100644 --- a/svx/source/gallery2/galobj.cxx +++ b/svx/source/gallery2/galobj.cxx @@ -188,7 +188,7 @@ void SgaObject::WriteData( SvStream& rOut, const OUString& rDestDir ) const rOut.SetCompressMode( nOldCompressMode ); } else - rOut << aThumbMtf; + WriteGDIMetaFile( rOut, aThumbMtf ); OUString aURLWithoutDestDir = aURL.GetMainURL( INetURLObject::NO_DECODE ); aURLWithoutDestDir = aURLWithoutDestDir.replaceFirst(rDestDir, ""); @@ -252,7 +252,7 @@ void SgaObject::SetTitle( const OUString& rTitle ) aTitle = rTitle; } -SvStream& operator<<( SvStream& rOut, const SgaObject& rObj ) +SvStream& WriteSgaObject( SvStream& rOut, const SgaObject& rObj ) { rObj.WriteData( rOut, "" ); return rOut; |