summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-01-15 12:23:20 +0200
committerNoel Grandin <noel@peralex.com>2015-01-15 13:32:15 +0200
commit238ce4af682d1eb52ff759b1887b5962e6ad8e9b (patch)
tree0b59d5a1797e308b50b153665c24b2be525c0cee /editeng
parent897c8af7948aae8f3e3014f9f23846ef1ca5c6cd (diff)
remove unnecessary casts
leftovers from conversion of SvStream operator>> to Write methods Change-Id: Id1d1e60ae42afb689910845a3c6ec75e3388fb56
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/numitem.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/editeng/source/items/numitem.cxx b/editeng/source/items/numitem.cxx
index 39bbf43c262d..c90b97431eea 100644
--- a/editeng/source/items/numitem.cxx
+++ b/editeng/source/items/numitem.cxx
@@ -298,10 +298,10 @@ SvStream& SvxNumberFormat::Store(SvStream &rStream, FontToSubsFontConverter pC
nTempColor = COL_BLACK;
WriteColor( rStream, nTempColor );
rStream.WriteUInt16( nBulletRelSize );
- rStream.WriteUInt16( (sal_uInt16)IsShowSymbol() );
+ rStream.WriteUInt16( IsShowSymbol() );
- rStream.WriteUInt16( mePositionAndSpaceMode );
- rStream.WriteUInt16( meLabelFollowedBy );
+ rStream.WriteUInt16( mePositionAndSpaceMode );
+ rStream.WriteUInt16( meLabelFollowedBy );
rStream.WriteInt32( mnListtabPos );
rStream.WriteInt32( mnFirstLineIndent );
rStream.WriteInt32( mnIndentAt );
@@ -681,7 +681,7 @@ SvStream& SvxNumRule::Store( SvStream &rStream )
rStream.WriteUInt16( nLevelCount );
//first save of nFeatureFlags for old versions
rStream.WriteUInt16( nFeatureFlags );
- rStream.WriteUInt16( (sal_uInt16)bContinuousNumbering );
+ rStream.WriteUInt16( bContinuousNumbering );
rStream.WriteUInt16( eNumberingType );
FontToSubsFontConverter pConverter = 0;