summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-09-25 06:11:21 +0200
committerNoel Grandin <noel@peralex.com>2014-09-26 15:26:20 +0200
commit8ea2bb252a8847b514546b7c49eeb7a83fcc7851 (patch)
treefa24994cab40dc38198c29a32478373aea2ffe4a /sfx2
parentbec72dd34f8aa7419c6159bdf02c5ba34a6228a8 (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.cxx2
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;
}