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 /include/vcl | |
parent | 99c9e0f86b86a642a869cae9e6ccb6ef703e1652 (diff) |
VCL: Rename ApplyMask to DrawDeviceMask in OutputDevice
Change-Id: I3392294f8144a9f3124ada972934bb0452c6e13b
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/outdev.hxx | 2 | ||||
-rw-r--r-- | include/vcl/print.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index a22d407d07e0..51b40aa32517 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -1472,7 +1472,7 @@ public: protected: - virtual void ApplyMask ( const Bitmap& rMask, const Color& rMaskColor, + virtual void DrawDeviceMask ( const Bitmap& rMask, const Color& rMaskColor, const Point& rDestPt, const Size& rDestSize, const Point& rSrcPtPixel, const Size& rSrcSizePixel ); ///@} diff --git a/include/vcl/print.hxx b/include/vcl/print.hxx index 605c21a6d560..01c343027d0d 100644 --- a/include/vcl/print.hxx +++ b/include/vcl/print.hxx @@ -270,7 +270,7 @@ protected: void SetSelfAsQueuePrinter( bool bQueuePrinter ) { mbIsQueuePrinter = bQueuePrinter; } bool IsQueuePrinter() const { return mbIsQueuePrinter; } - virtual void ApplyMask ( const Bitmap& rMask, const Color& rMaskColor, + virtual void DrawDeviceMask ( const Bitmap& rMask, const Color& rMaskColor, const Point& rDestPt, const Size& rDestSize, const Point& rSrcPtPixel, const Size& rSrcSizePixel ) SAL_OVERRIDE; |