From d46b16e1e495c153f70633d2da5c2bb0aba85cc9 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 25 Sep 2014 05:27:36 +0200 Subject: remove unnecessary casts's left over from our conversion of the SvStream output operators to more specific methods Change-Id: I63f18be8e940098c2acbbc73ee49ede3a949fcb2 --- svx/source/svdraw/svdattr.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svx') diff --git a/svx/source/svdraw/svdattr.cxx b/svx/source/svdraw/svdattr.cxx index bd78be8d33d4..1e012d96bac3 100644 --- a/svx/source/svdraw/svdattr.cxx +++ b/svx/source/svdraw/svdattr.cxx @@ -679,8 +679,8 @@ SfxPoolItem* SdrFractionItem::Create(SvStream& rIn, sal_uInt16 /*nVer*/) const SvStream& SdrFractionItem::Store(SvStream& rOut, sal_uInt16 /*nItemVers*/) const { - rOut.WriteInt32( sal_Int32(nValue.GetNumerator()) ); - rOut.WriteInt32( sal_Int32(nValue.GetDenominator()) ); + rOut.WriteInt32( nValue.GetNumerator() ); + rOut.WriteInt32( nValue.GetDenominator() ); return rOut; } -- cgit