From c1d37365c42a0627a66310c46d4beb2337633654 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 28 Jan 2014 19:59:13 +0100 Subject: bool improvements Change-Id: Iede12ed1e35581cf48d64b898f22949d0c1aa6de --- vcl/source/gdi/print2.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vcl/source/gdi/print2.cxx') diff --git a/vcl/source/gdi/print2.cxx b/vcl/source/gdi/print2.cxx index a905cca6c5be..16b035cfa2de 100644 --- a/vcl/source/gdi/print2.cxx +++ b/vcl/source/gdi/print2.cxx @@ -1255,7 +1255,7 @@ bool OutputDevice::RemoveTransparenciesFromMetaFile( const GDIMetaFile& rInMtf, } const sal_Bool bOldMap = mbMap; - mbMap = aPaintVDev.mbMap = sal_False; + mbMap = aPaintVDev.mbMap = false; Bitmap aBandBmp( aPaintVDev.GetBitmap( Point(), aDstSzPix ) ); @@ -1271,7 +1271,7 @@ bool OutputDevice::RemoveTransparenciesFromMetaFile( const GDIMetaFile& rInMtf, rOutMtf.AddAction( new MetaBmpScaleAction( aDstPtPix, aDstSzPix, aBandBmp ) ); rOutMtf.AddAction( new MetaCommentAction( "PRNSPOOL_TRANSPARENTBITMAP_END" ) ); - aPaintVDev.mbMap = sal_True; + aPaintVDev.mbMap = true; mbMap = bOldMap; aMapVDev.Pop(); aPaintVDev.Pop(); -- cgit