summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/bitmap3.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/gdi/bitmap3.cxx')
-rw-r--r--vcl/source/gdi/bitmap3.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/gdi/bitmap3.cxx b/vcl/source/gdi/bitmap3.cxx
index e0da9aa91241..85c64a11193f 100644
--- a/vcl/source/gdi/bitmap3.cxx
+++ b/vcl/source/gdi/bitmap3.cxx
@@ -270,9 +270,9 @@ bool Bitmap::Convert( BmpConversion eConversion )
case( BMP_CONVERSION_4BIT_COLORS ):
{
if( nBitCount < 4 )
- bRet = ImplConvertUp( 4, NULL );
+ bRet = ImplConvertUp( 4 );
else if( nBitCount > 4 )
- bRet = ImplConvertDown( 4, NULL );
+ bRet = ImplConvertDown( 4 );
else
bRet = true;
}
@@ -318,7 +318,7 @@ bool Bitmap::Convert( BmpConversion eConversion )
case( BMP_CONVERSION_24BIT ):
{
if( nBitCount < 24 )
- bRet = ImplConvertUp( 24, NULL );
+ bRet = ImplConvertUp( 24 );
else
bRet = true;
}