diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-04 09:27:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-04 15:26:14 +0100 |
commit | a04d60ca5af1b794c190fa9d5a0fb7506755f27d (patch) | |
tree | a5d141f79a11eaaca5ff76d6def636278c54357e /include/toolkit/awt | |
parent | f90159697506e28ebbfb436047e52db1b65bd9a7 (diff) |
use more DECL_DLLPRIVATE_LINK
to avoid unnecessarily exporting symbols
Change-Id: I4c9c7c86f288ba9655a8b919387e30f3096ccfb2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124667
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/toolkit/awt')
-rw-r--r-- | include/toolkit/awt/vclxaccessiblecomponent.hxx | 4 | ||||
-rw-r--r-- | include/toolkit/awt/vclxmenu.hxx | 2 | ||||
-rw-r--r-- | include/toolkit/awt/vclxwindow.hxx | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/include/toolkit/awt/vclxaccessiblecomponent.hxx b/include/toolkit/awt/vclxaccessiblecomponent.hxx index bacaa941e96a..b1735f3f27d8 100644 --- a/include/toolkit/awt/vclxaccessiblecomponent.hxx +++ b/include/toolkit/awt/vclxaccessiblecomponent.hxx @@ -55,8 +55,8 @@ private: rtl::Reference<VCLXWindow> m_xVCLXWindow; VclPtr<vcl::Window> m_xEventSource; - DECL_LINK( WindowEventListener, VclWindowEvent&, void ); - DECL_LINK( WindowChildEventListener, VclWindowEvent&, void ); + DECL_DLLPRIVATE_LINK( WindowEventListener, VclWindowEvent&, void ); + DECL_DLLPRIVATE_LINK( WindowChildEventListener, VclWindowEvent&, void ); void DisconnectEvents(); protected: diff --git a/include/toolkit/awt/vclxmenu.hxx b/include/toolkit/awt/vclxmenu.hxx index 73e8e3acb451..b77c4d65124e 100644 --- a/include/toolkit/awt/vclxmenu.hxx +++ b/include/toolkit/awt/vclxmenu.hxx @@ -68,7 +68,7 @@ private: protected: ::osl::Mutex& GetMutex() { return maMutex; } - DECL_LINK( MenuEventListener, VclMenuEvent&, void ); + DECL_DLLPRIVATE_LINK( MenuEventListener, VclMenuEvent&, void ); void ImplCreateMenu( bool bPopup ); void ImplAddListener(); diff --git a/include/toolkit/awt/vclxwindow.hxx b/include/toolkit/awt/vclxwindow.hxx index 12783b5512ef..9acc4a636a7a 100644 --- a/include/toolkit/awt/vclxwindow.hxx +++ b/include/toolkit/awt/vclxwindow.hxx @@ -77,7 +77,7 @@ private: protected: Size ImplCalcWindowSize( const Size& rOutSz ) const; - DECL_LINK(WindowEventListener, VclWindowEvent&, void ); + DECL_DLLPRIVATE_LINK(WindowEventListener, VclWindowEvent&, void ); virtual void ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent ); virtual css::uno::Reference< css::accessibility::XAccessibleContext > |