diff options
author | krishna keshav <princy.krishnakeshav@gmail.com> | 2016-05-31 00:20:13 +0530 |
---|---|---|
committer | jan iversen <jani@documentfoundation.org> | 2016-06-14 13:49:41 +0000 |
commit | 3c573174dab0f1c6a85ce50ad4210c8772bdcf9a (patch) | |
tree | 447db9349302b631504478f6be945c61868581ad /sot | |
parent | 4537a027c5c734e094191d01a46c2da734dbfe5b (diff) |
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/25684
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: jan iversen <jani@documentfoundation.org>
Tested-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'sot')
-rw-r--r-- | sot/source/sdstor/storinfo.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sot/source/sdstor/storinfo.cxx b/sot/source/sdstor/storinfo.cxx index bfcd21410c49..1c5025bf13f2 100644 --- a/sot/source/sdstor/storinfo.cxx +++ b/sot/source/sdstor/storinfo.cxx @@ -43,7 +43,7 @@ SotClipboardFormatId ReadClipboardFormat( SvStream & rStm ) else rStm.SetError( SVSTREAM_GENERALERROR ); } - else if( nLen == -1L ) + else if( nLen == -1 ) { // Windows clipboard format // SV und Win stimmen ueberein (bis einschl. SotClipboardFormatId::GDIMETAFILE) @@ -51,7 +51,7 @@ SotClipboardFormatId ReadClipboardFormat( SvStream & rStm ) rStm.ReadUInt32( nTmp ); nFormat = static_cast<SotClipboardFormatId>(nTmp); } - else if( nLen == -2L ) + else if( nLen == -2 ) { sal_uInt32 nTmp; rStm.ReadUInt32( nTmp ); |