summaryrefslogtreecommitdiffstats
path: root/basic/source
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 /basic/source
parentremove unnecessary casts in calls to SvStream.WriteUInt32 (diff)
downloadcore-4e26b915687acbfab5ebc260d8a7a434761721bd.tar.gz
core-4e26b915687acbfab5ebc260d8a7a434761721bd.zip
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 'basic/source')
-rw-r--r--basic/source/runtime/methods1.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/methods1.cxx b/basic/source/runtime/methods1.cxx
index 93abf27af3be..81ad39c62bbc 100644
--- a/basic/source/runtime/methods1.cxx
+++ b/basic/source/runtime/methods1.cxx
@@ -1028,7 +1028,7 @@ static bool lcl_WriteSbxVariable( const SbxVariable& rVar, SvStream* pStrm,
{
pStrm->WriteUInt16( SbxSALINT64 ); // VarType Id
}
- pStrm->WriteUInt64( (sal_uInt64)rVar.GetInt64() );
+ pStrm->WriteUInt64( rVar.GetInt64() );
break;
case SbxSINGLE:
if( bIsVariant )