diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-28 22:00:10 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-28 22:27:10 +1000 |
commit | 2fc8e17a017a0f68b5cc6a55e61e100da9d8e4eb (patch) | |
tree | d71689cf7ca4e084900edd90b5ce39fa822d1899 /vcl/source/outdev | |
parent | 99c9e0f86b86a642a869cae9e6ccb6ef703e1652 (diff) |
VCL: Rename ApplyMask to DrawDeviceMask in OutputDevice
Change-Id: I3392294f8144a9f3124ada972934bb0452c6e13b
Diffstat (limited to 'vcl/source/outdev')
-rw-r--r-- | vcl/source/outdev/mask.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/outdev/mask.cxx b/vcl/source/outdev/mask.cxx index 8ce7dfc62317..d1c6b7e913d8 100644 --- a/vcl/source/outdev/mask.cxx +++ b/vcl/source/outdev/mask.cxx @@ -91,11 +91,11 @@ void OutputDevice::DrawMask( const Point& rDestPt, const Size& rDestSize, if ( mbOutputClipped ) return; - ApplyMask( rBitmap, rMaskColor, rDestPt, rDestSize, rSrcPtPixel, rSrcSizePixel ); + DrawDeviceMask( rBitmap, rMaskColor, rDestPt, rDestSize, rSrcPtPixel, rSrcSizePixel ); } -void OutputDevice::ApplyMask( const Bitmap& rMask, const Color& rMaskColor, +void OutputDevice::DrawDeviceMask( const Bitmap& rMask, const Color& rMaskColor, const Point& rDestPt, const Size& rDestSize, const Point& rSrcPtPixel, const Size& rSrcSizePixel ) { |