Kaydet (Commit) 3c573174 authored tarafından krishna keshav's avatar krishna keshav Kaydeden (comit) jan iversen

tdf#96505 Get rid of cargo cult long integer literals

cleanup in sot/source/stdsor/storinfo.cxx

Change-Id: Ib904cb3ddc18dc90e479b35ca21ae4649abd0f0c
Reviewed-on: https://gerrit.libreoffice.org/25684Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarjan iversen <jani@documentfoundation.org>
Tested-by: 's avatarjan iversen <jani@documentfoundation.org>
üst 4537a027
...@@ -43,7 +43,7 @@ SotClipboardFormatId ReadClipboardFormat( SvStream & rStm ) ...@@ -43,7 +43,7 @@ SotClipboardFormatId ReadClipboardFormat( SvStream & rStm )
else else
rStm.SetError( SVSTREAM_GENERALERROR ); rStm.SetError( SVSTREAM_GENERALERROR );
} }
else if( nLen == -1L ) else if( nLen == -1 )
{ {
// Windows clipboard format // Windows clipboard format
// SV und Win stimmen ueberein (bis einschl. SotClipboardFormatId::GDIMETAFILE) // SV und Win stimmen ueberein (bis einschl. SotClipboardFormatId::GDIMETAFILE)
...@@ -51,7 +51,7 @@ SotClipboardFormatId ReadClipboardFormat( SvStream & rStm ) ...@@ -51,7 +51,7 @@ SotClipboardFormatId ReadClipboardFormat( SvStream & rStm )
rStm.ReadUInt32( nTmp ); rStm.ReadUInt32( nTmp );
nFormat = static_cast<SotClipboardFormatId>(nTmp); nFormat = static_cast<SotClipboardFormatId>(nTmp);
} }
else if( nLen == -2L ) else if( nLen == -2 )
{ {
sal_uInt32 nTmp; sal_uInt32 nTmp;
rStm.ReadUInt32( nTmp ); rStm.ReadUInt32( nTmp );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment