diff options
author | Noel Grandin <noel@peralex.com> | 2014-09-25 20:16:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-09-26 15:27:17 +0200 |
commit | 04fd62096fca2c0b917ac6172104399e65933585 (patch) | |
tree | 3e1d4e9c8b9aed6b308103c5e235f71ec3b2cce1 /sw | |
parent | 5501c8d2220ee3cab703d09d348e99ba3e017dba (diff) |
remove unnecessary casts in calls to SvStream.WriteInt32
left over from our conversion of the SvStream output operators
to more specific methods
Change-Id: I0c0172519479be0535a447e41a592fbf782751bd
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/uibase/config/uinums.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/config/uinums.cxx b/sw/source/uibase/config/uinums.cxx index 2ba375f6ed16..40de91d8d00c 100644 --- a/sw/source/uibase/config/uinums.cxx +++ b/sw/source/uibase/config/uinums.cxx @@ -500,8 +500,8 @@ void SwNumRulesWithName::_SwNumFmtGlobal::Store( SvStream& rStream ) if( SVX_NUM_BITMAP == aFmt.GetNumberingType() ) { - rStream.WriteInt32( (sal_Int32)aFmt.GetGraphicSize().Width() ) - .WriteInt32( (sal_Int32)aFmt.GetGraphicSize().Height() ); + rStream.WriteInt32( aFmt.GetGraphicSize().Width() ) + .WriteInt32( aFmt.GetGraphicSize().Height() ); sal_uInt8 cFlg = ( 0 != aFmt.GetBrush() ? 1 : 0 ) + ( 0 != aFmt.GetGraphicOrientation() ? 2 : 0 ); rStream.WriteUChar( cFlg ); |