diff options
author | Noel Grandin <noel@peralex.com> | 2015-01-15 12:23:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-01-15 13:32:15 +0200 |
commit | 238ce4af682d1eb52ff759b1887b5962e6ad8e9b (patch) | |
tree | 0b59d5a1797e308b50b153665c24b2be525c0cee /sw/source | |
parent | 897c8af7948aae8f3e3014f9f23846ef1ca5c6cd (diff) |
remove unnecessary casts
leftovers from conversion of SvStream operator>> to Write methods
Change-Id: Id1d1e60ae42afb689910845a3c6ec75e3388fb56
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/filter/ww8/wrtww8.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx index ba34ffe59959..e59fdd95a46d 100644 --- a/sw/source/filter/ww8/wrtww8.cxx +++ b/sw/source/filter/ww8/wrtww8.cxx @@ -3864,7 +3864,7 @@ void WW8Export::WriteFormData( const ::sw::mark::IFieldmark& rFieldmark ) if ( !type ) SwWW8Writer::WriteString_xstz( *pDataStrm, ffdeftext, true ); if ( type ) - pDataStrm->WriteUInt16( sal_uInt16(0) ); + pDataStrm->WriteUInt16( 0 ); SwWW8Writer::WriteString_xstz( *pDataStrm, OUString( ffformat ), true ); SwWW8Writer::WriteString_xstz( *pDataStrm, OUString( ffhelptext ), true ); |