From 7637547123b00a9b07ef8659bc077be85cba0a89 Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Sat, 23 May 2020 23:15:51 +1000 Subject: tdf#74702 vcl: extract IsScreenComp() Change-Id: Ie35ae8c10eaa66b48c9c79a0356a71ad82ca66e7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94720 Tested-by: Jenkins Reviewed-by: Mike Kaganski --- vcl/source/gdi/virdev.cxx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'vcl') diff --git a/vcl/source/gdi/virdev.cxx b/vcl/source/gdi/virdev.cxx index 0eeab8b8dd44..1bb163cda06e 100644 --- a/vcl/source/gdi/virdev.cxx +++ b/vcl/source/gdi/virdev.cxx @@ -158,15 +158,11 @@ void VirtualDevice::ImplInitVirDev( const OutputDevice* pOutDev, } mnOutWidth = nDX; mnOutHeight = nDY; - mbScreenComp = true; if (meFormat == DeviceFormat::BITMASK) SetAntialiasing( AntialiasingFlags::DisableText ); - if ( pOutDev->GetOutDevType() == OUTDEV_PRINTER ) - mbScreenComp = false; - else if ( pOutDev->IsVirtual() ) - mbScreenComp = static_cast(pOutDev)->mbScreenComp; + mbScreenComp = pOutDev->IsScreenComp(); mbDevOutput = true; mxFontCollection = pSVData->maGDIData.mxScreenFontList; -- cgit