summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-09-25 20:29:27 +0200
committerNoel Grandin <noel@peralex.com>2014-09-26 15:27:18 +0200
commit4e26b915687acbfab5ebc260d8a7a434761721bd (patch)
treeedb43f77f729e08529c8860d3641f5743009334d /editeng
parent5cefde06ea9f4347b5d2747e0d2825c3c710aa83 (diff)
remove unnecessary casts in misc calls to SvStream.Write*
left over from our conversion of the SvStream output operators to more specific methods Change-Id: Ib80032e8626f5476a89b958f590441994594f4e4
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/numitem.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/editeng/source/items/numitem.cxx b/editeng/source/items/numitem.cxx
index 937801177c74..800a1308416d 100644
--- a/editeng/source/items/numitem.cxx
+++ b/editeng/source/items/numitem.cxx
@@ -304,9 +304,9 @@ SvStream& SvxNumberFormat::Store(SvStream &rStream, FontToSubsFontConverter pC
rStream.WriteUInt16( mePositionAndSpaceMode );
rStream.WriteUInt16( meLabelFollowedBy );
- rStream.WriteInt32( ( sal_Int32 ) mnListtabPos );
- rStream.WriteInt32( ( sal_Int32 ) mnFirstLineIndent );
- rStream.WriteInt32( ( sal_Int32 ) mnIndentAt );
+ rStream.WriteInt32( mnListtabPos );
+ rStream.WriteInt32( mnFirstLineIndent );
+ rStream.WriteInt32( mnIndentAt );
return rStream;
}