diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-20 16:07:46 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-23 12:05:36 +0100 |
commit | 01159643623de55f9e1de84d568032ca919dbd8f (patch) | |
tree | ce16c0be84c8648eae7afb69196b02393bc71c2f /include/svtools/editbrowsebox.hxx | |
parent | f6f37e3341f2a3ad292af1a923dbc33d81e439c9 (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/svtools/editbrowsebox.hxx')
-rw-r--r-- | include/svtools/editbrowsebox.hxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/svtools/editbrowsebox.hxx b/include/svtools/editbrowsebox.hxx index 29b2e3ffda03..71f8260fc487 100644 --- a/include/svtools/editbrowsebox.hxx +++ b/include/svtools/editbrowsebox.hxx @@ -21,6 +21,7 @@ #define INCLUDED_SVTOOLS_EDITBROWSEBOX_HXX #define SVTOOLS_IN_EDITBROWSEBOX_HXX +#include <config_options.h> #include <memory> #include <svtools/svtdllapi.h> #include <tools/ref.hxx> @@ -118,7 +119,7 @@ namespace svt //= IEditImplementation - class SVT_DLLPUBLIC IEditImplementation + class UNLESS_MERGELIBS(SVT_DLLPUBLIC) IEditImplementation { public: virtual ~IEditImplementation() = 0; @@ -188,7 +189,7 @@ namespace svt /** a multi line edit which can be used in a cell of an EditBrowseBox */ - class SVT_DLLPUBLIC MultiLineTextCell final : public VclMultiLineEdit + class UNLESS_MERGELIBS(SVT_DLLPUBLIC) MultiLineTextCell final : public VclMultiLineEdit { public: MultiLineTextCell( vcl::Window* _pParent, WinBits _nStyle ) @@ -212,7 +213,7 @@ namespace svt typedef GenericEditImplementation< Edit > EditImplementation; typedef GenericEditImplementation< MultiLineTextCell > MultiLineEditImplementation_Base; - class SVT_DLLPUBLIC MultiLineEditImplementation final : public MultiLineEditImplementation_Base + class UNLESS_MERGELIBS(SVT_DLLPUBLIC) MultiLineEditImplementation final : public MultiLineEditImplementation_Base { public: MultiLineEditImplementation( MultiLineTextCell& _rEdit ) : MultiLineEditImplementation_Base( _rEdit ) @@ -252,7 +253,7 @@ namespace svt //= SpinCellController - class SVT_DLLPUBLIC SpinCellController final : public CellController + class UNLESS_MERGELIBS(SVT_DLLPUBLIC) SpinCellController final : public CellController { public: SpinCellController(SpinField* pSpinField); |