diff options
author | Caolán McNamara <caolanm@redhat.com> | 2023-01-10 20:53:17 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2023-01-12 08:49:06 +0000 |
commit | 1e96a295024b6a200afff2065786885ea3b131b4 (patch) | |
tree | 0b97de14547d68470b22d879b2d2ef3ecab4a16c /vcl/inc/headless | |
parent | 0f348ba55db9eabe990b5bbeb42d1d94b3b70e79 (diff) |
this is never a X11SalBitmap anymore
Change-Id: I9f645128709bce93be1c8548614b5e72e6667844
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145292
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/inc/headless')
-rw-r--r-- | vcl/inc/headless/BitmapHelper.hxx | 4 | ||||
-rw-r--r-- | vcl/inc/headless/CairoCommon.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/headless/BitmapHelper.hxx b/vcl/inc/headless/BitmapHelper.hxx index 0aed5e3693fc..dbd7e86675e3 100644 --- a/vcl/inc/headless/BitmapHelper.hxx +++ b/vcl/inc/headless/BitmapHelper.hxx @@ -23,7 +23,7 @@ #include <headless/svpbmp.hxx> #include <basegfx/utils/systemdependentdata.hxx> -class BitmapHelper : public SurfaceHelper +class VCL_DLLPUBLIC BitmapHelper : public SurfaceHelper { private: #ifdef HAVE_CAIRO_FORMAT_RGB24_888 @@ -37,7 +37,7 @@ public: unsigned char* getBits(sal_Int32& rStride); }; -class MaskHelper : public SurfaceHelper +class VCL_DLLPUBLIC MaskHelper : public SurfaceHelper { private: std::unique_ptr<unsigned char[]> pAlphaBits; diff --git a/vcl/inc/headless/CairoCommon.hxx b/vcl/inc/headless/CairoCommon.hxx index 4cbe1af538ba..cd011b2a9eab 100644 --- a/vcl/inc/headless/CairoCommon.hxx +++ b/vcl/inc/headless/CairoCommon.hxx @@ -234,7 +234,7 @@ private: sal_Int32 nWidth) const; }; -class SurfaceHelper +class VCL_DLLPUBLIC SurfaceHelper { private: cairo_surface_t* pSurface; |