From 5cefde06ea9f4347b5d2747e0d2825c3c710aa83 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 25 Sep 2014 20:19:30 +0200 Subject: remove unnecessary casts in calls to SvStream.WriteUInt32 left over from our conversion of the SvStream output operators to more specific methods Change-Id: I1d848f19f82783e6eabf2da37dbde78fe36ea1e0 --- sot/source/sdstor/ucbstorage.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sot') diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx index c6a5e8b2c318..0cb8bd76b080 100644 --- a/sot/source/sdstor/ucbstorage.cxx +++ b/sot/source/sdstor/ucbstorage.cxx @@ -3183,7 +3183,7 @@ OUString UCBStorage::CreateLinkFile( const OUString& rName ) SvStream* pStream = pTempFile->GetStream( STREAM_STD_READWRITE | STREAM_TRUNC ); // write header - pStream->WriteUInt32( ( sal_uInt32 ) 0x04034b50 ); + pStream->WriteUInt32( 0x04034b50 ); // assemble a new folder name in the destination folder INetURLObject aObj( rName ); -- cgit