Fixing the joy of MSVC preprocessor
Change-Id: I4e97f93de568b1704a58ab5e5c47e85e09327779
This commit is contained in:
@@ -808,7 +808,7 @@ HGLOBAL WinSalBitmap::ImplCreateDIB( const Size& rSize, sal_uInt16 nBits, const
|
||||
if( nColors )
|
||||
{
|
||||
// copy the palette entries if any
|
||||
const sal_uInt16 nMinCount = std::min( nColors, rPal.GetEntryCount() );
|
||||
const sal_uInt16 nMinCount = (std::min)( nColors, rPal.GetEntryCount() );
|
||||
if( nMinCount )
|
||||
memcpy( pBI->bmiColors, rPal.ImplGetColorBuffer(), nMinCount * sizeof(RGBQUAD) );
|
||||
}
|
||||
@@ -976,7 +976,7 @@ void WinSalBitmap::ReleaseBuffer( BitmapBuffer* pBuffer, bool bReadOnly )
|
||||
PBITMAPINFO pBI = (PBITMAPINFO) GlobalLock( mhDIB );
|
||||
const sal_uInt16 nCount = pBuffer->maPalette.GetEntryCount();
|
||||
const sal_uInt16 nDIBColorCount = ImplGetDIBColorCount( mhDIB );
|
||||
memcpy( pBI->bmiColors, pBuffer->maPalette.ImplGetColorBuffer(), std::min( nDIBColorCount, nCount ) * sizeof( RGBQUAD ) );
|
||||
memcpy( pBI->bmiColors, pBuffer->maPalette.ImplGetColorBuffer(), (std::min)( nDIBColorCount, nCount ) * sizeof( RGBQUAD ) );
|
||||
GlobalUnlock( mhDIB );
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user