summaryrefslogtreecommitdiff
path: root/svl/source/items/cntwall.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/cntwall.cxx')
-rw-r--r--svl/source/items/cntwall.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/cntwall.cxx b/svl/source/items/cntwall.cxx
index 731394df8a42..585e6bb08eea 100644
--- a/svl/source/items/cntwall.cxx
+++ b/svl/source/items/cntwall.cxx
@@ -115,13 +115,13 @@ SfxPoolItem* CntWallpaperItem::Create( SvStream& rStream, sal_uInt16 nVersion) c
// -----------------------------------------------------------------------
SvStream& CntWallpaperItem::Store( SvStream& rStream, sal_uInt16 ) const
{
- rStream << CNTWALLPAPERITEM_STREAM_MAGIC;
+ rStream.WriteUInt32( CNTWALLPAPERITEM_STREAM_MAGIC );
writeUnicodeString(rStream, _aURL);
// !!! Color stream operators do not work - they discard any
// transparency info !!!
// ??? Why the hell Color::Write(...) isn't const ???
(const_cast< CntWallpaperItem* >(this))->_nColor.Write( rStream, sal_True );
- rStream << _nStyle;
+ rStream.WriteUInt16( _nStyle );
return rStream;
}