summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2020-12-24 09:35:22 +1100
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-01-08 11:02:09 +0100
commit6bc1de9b410e118aa15bdade6ad2c3644843e21e (patch)
treeb229090dfd44d7810485f6d3cd14cda12a4692ac /include
parente27be8cf095d0a71866d2a415e958ee599c6b360 (diff)
vcl: move ImplPrintTransparent() from OutputDevice to Printer
Change-Id: I6950bdca72b93b34621e0b108c2c8060c59d98d5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108247 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/outdev.hxx5
-rw-r--r--include/vcl/print.hxx5
2 files changed, 5 insertions, 5 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index 6daab02f95f1..b5885f4b2de2 100644
--- a/include/vcl/outdev.hxx
+++ b/include/vcl/outdev.hxx
@@ -1605,11 +1605,6 @@ public:
bool bDownsampleBitmaps,
const Color& rBackground = COL_TRANSPARENT );
- SAL_DLLPRIVATE void ImplPrintTransparent (
- const Bitmap& rBmp, const Bitmap& rMask,
- const Point& rDestPt, const Size& rDestSize,
- const Point& rSrcPtPixel, const Size& rSrcSizePixel );
-
SAL_DLLPRIVATE Color ImplDrawModeToColor ( const Color& rColor ) const;
diff --git a/include/vcl/print.hxx b/include/vcl/print.hxx
index a74f1c5e6288..8ddd8bc7fbd3 100644
--- a/include/vcl/print.hxx
+++ b/include/vcl/print.hxx
@@ -184,6 +184,11 @@ private:
static VCL_DLLPRIVATE ErrCode
ImplSalPrinterErrorCodeToVCL( SalPrinterError nError );
+ SAL_DLLPRIVATE void ImplPrintTransparent (
+ const Bitmap& rBmp, const Bitmap& rMask,
+ const Point& rDestPt, const Size& rDestSize,
+ const Point& rSrcPtPixel, const Size& rSrcSizePixel );
+
private:
VCL_DLLPRIVATE void EndJob();
Printer( const Printer& rPrinter ) = delete;