summaryrefslogtreecommitdiff
path: root/include/vcl/layout.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-03-20 16:07:46 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-03-23 12:05:36 +0100
commit01159643623de55f9e1de84d568032ca919dbd8f (patch)
treece16c0be84c8648eae7afb69196b02393bc71c2f /include/vcl/layout.hxx
parentf6f37e3341f2a3ad292af1a923dbc33d81e439c9 (diff)
make more classes private in mergedlibs mode
Change-Id: I486922d0652f26fa7ee56f5fe308e19fe5ff137e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90856 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/layout.hxx')
-rw-r--r--include/vcl/layout.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx
index 8a70f69fe7f6..39c69ff91543 100644
--- a/include/vcl/layout.hxx
+++ b/include/vcl/layout.hxx
@@ -10,6 +10,7 @@
#ifndef INCLUDED_VCL_LAYOUT_HXX
#define INCLUDED_VCL_LAYOUT_HXX
+#include <config_options.h>
#include <vcl/dllapi.h>
#include <vcl/ctrl.hxx>
#include <vcl/help.hxx>
@@ -306,7 +307,7 @@ private:
}
};
-class VCL_DLLPUBLIC VclGrid final : public VclContainer
+class UNLESS_MERGELIBS(VCL_DLLPUBLIC) VclGrid final : public VclContainer
{
private:
bool m_bRowHomogeneous;
@@ -361,7 +362,7 @@ public:
virtual bool set_property(const OString &rKey, const OUString &rValue) override;
};
-class VCL_DLLPUBLIC VclBin : public VclContainer
+class UNLESS_MERGELIBS(VCL_DLLPUBLIC) VclBin : public VclContainer
{
public:
VclBin(vcl::Window *pParent, WinBits nStyle = WB_HIDE | WB_CLIPCHILDREN)
@@ -443,7 +444,7 @@ private:
virtual OUString getDefaultAccessibleName() const override;
};
-class VCL_DLLPUBLIC VclAlignment final : public VclBin
+class UNLESS_MERGELIBS(VCL_DLLPUBLIC) VclAlignment final : public VclBin
{
public:
VclAlignment(vcl::Window *pParent)