diff options
author | Noel Grandin <noel@peralex.com> | 2014-09-25 06:11:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-09-26 15:26:20 +0200 |
commit | 8ea2bb252a8847b514546b7c49eeb7a83fcc7851 (patch) | |
tree | fa24994cab40dc38198c29a32478373aea2ffe4a /sfx2 | |
parent | bec72dd34f8aa7419c6159bdf02c5ba34a6228a8 (diff) |
remove unnecessary casts in calls to SvStream.WriteSChar
left over from our conversion of the SvStream output operators
to more specific methods
Change-Id: I4f17a2fd6a68f8078b97c96e89e27a5627c57c03
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/zoomitem.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/doc/zoomitem.cxx b/sfx2/source/doc/zoomitem.cxx index 1eb14cf42787..d7ac341a5420 100644 --- a/sfx2/source/doc/zoomitem.cxx +++ b/sfx2/source/doc/zoomitem.cxx @@ -88,7 +88,7 @@ SvStream& SvxZoomItem::Store( SvStream& rStrm, sal_uInt16 /*nItemVersion*/ ) con { rStrm.WriteUInt16( (sal_uInt16)GetValue() ) .WriteUInt16( nValueSet ) - .WriteSChar( (sal_Int8)eType ); + .WriteSChar( eType ); return rStrm; } |