summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-03-04 11:40:04 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-03-04 19:28:04 +0100
commitb389b5958787b142a42d95744f46ccc9b94cf0a9 (patch)
treee68eae15f3f72825754d51fcf89f7c93d38aa730 /include
parent7520e2b2126c05aadb738256313d2f250b9ded62 (diff)
make some symbols private
Change-Id: I3115dda50e77dc6a335e46026724641c08c04030 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89949 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/svx/itemwin.hxx2
-rw-r--r--include/svx/unoshape.hxx2
-rw-r--r--include/toolkit/helper/listenermultiplexer.hxx6
3 files changed, 5 insertions, 5 deletions
diff --git a/include/svx/itemwin.hxx b/include/svx/itemwin.hxx
index 570a6cdbb4bd..a45e6ff62b08 100644
--- a/include/svx/itemwin.hxx
+++ b/include/svx/itemwin.hxx
@@ -47,7 +47,7 @@ public:
virtual ~SvxLineBox() override;
};
-class SVX_DLLPUBLIC SvxMetricField final : public InterimItemWindow
+class SvxMetricField final : public InterimItemWindow
{
private:
std::unique_ptr<weld::MetricSpinButton> m_xWidget;
diff --git a/include/svx/unoshape.hxx b/include/svx/unoshape.hxx
index 27c767d5e819..7c6b60291886 100644
--- a/include/svx/unoshape.hxx
+++ b/include/svx/unoshape.hxx
@@ -641,7 +641,7 @@ public:
* *
***********************************************************************/
-class SVXCORE_DLLPUBLIC SvxGraphicObject final : public SvxShapeText
+class SvxGraphicObject final : public SvxShapeText
{
using SvxUnoTextRangeBase::setPropertyValue;
using SvxUnoTextRangeBase::getPropertyValue;
diff --git a/include/toolkit/helper/listenermultiplexer.hxx b/include/toolkit/helper/listenermultiplexer.hxx
index 503b3390719f..23afbbfe159b 100644
--- a/include/toolkit/helper/listenermultiplexer.hxx
+++ b/include/toolkit/helper/listenermultiplexer.hxx
@@ -220,14 +220,14 @@ DECL_LISTENERMULTIPLEXER_END
// class TreeSelectionListenerMultiplexer
-DECL_LISTENERMULTIPLEXER_START_DLLPUB( TreeSelectionListenerMultiplexer, css::view::XSelectionChangeListener )
+DECL_LISTENERMULTIPLEXER_START( TreeSelectionListenerMultiplexer, css::view::XSelectionChangeListener )
virtual void SAL_CALL selectionChanged( const css::lang::EventObject& aEvent ) override;
DECL_LISTENERMULTIPLEXER_END
// class TreeExpansionListenerMultiplexer
-DECL_LISTENERMULTIPLEXER_START_DLLPUB( TreeExpansionListenerMultiplexer, css::awt::tree::XTreeExpansionListener )
+DECL_LISTENERMULTIPLEXER_START( TreeExpansionListenerMultiplexer, css::awt::tree::XTreeExpansionListener )
virtual void SAL_CALL requestChildNodes( const css::awt::tree::TreeExpansionEvent& aEvent ) override;
virtual void SAL_CALL treeExpanding( const css::awt::tree::TreeExpansionEvent& aEvent ) override;
virtual void SAL_CALL treeCollapsing( const css::awt::tree::TreeExpansionEvent& aEvent ) override;
@@ -238,7 +238,7 @@ DECL_LISTENERMULTIPLEXER_END
// class TreeEditListenerMultiplexer
-DECL_LISTENERMULTIPLEXER_START_DLLPUB( TreeEditListenerMultiplexer, css::awt::tree::XTreeEditListener )
+DECL_LISTENERMULTIPLEXER_START( TreeEditListenerMultiplexer, css::awt::tree::XTreeEditListener )
virtual void SAL_CALL nodeEditing( const css::uno::Reference< css::awt::tree::XTreeNode >& Node ) override;
virtual void SAL_CALL nodeEdited( const css::uno::Reference< css::awt::tree::XTreeNode >& Node, const OUString& NewText ) override;
DECL_LISTENERMULTIPLEXER_END