summaryrefslogtreecommitdiff
path: root/vcl/source/outdev/mask.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/outdev/mask.cxx')
-rw-r--r--vcl/source/outdev/mask.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/outdev/mask.cxx b/vcl/source/outdev/mask.cxx
index 6c52a544d394..6a5e619ede8e 100644
--- a/vcl/source/outdev/mask.cxx
+++ b/vcl/source/outdev/mask.cxx
@@ -128,11 +128,11 @@ void OutputDevice::DrawDeviceMask( const Bitmap& rMask, const Color& rMaskColor,
Bitmap aTmp( rMask );
aTmp.Mirror( nMirrFlags );
mpGraphics->DrawMask( aPosAry, *aTmp.ImplGetImpBitmap()->ImplGetSalBitmap(),
- ImplColorToSal( rMaskColor ) , this);
+ rMaskColor, this);
}
else
mpGraphics->DrawMask( aPosAry, *xImpBmp->ImplGetSalBitmap(),
- ImplColorToSal( rMaskColor ), this );
+ rMaskColor, this );
}
}