diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-05 11:32:37 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-05 13:59:10 +0100 |
commit | ffd0453810cff76aebb8b0c9e2a5d5fb18ac2591 (patch) | |
tree | f8b684c627a0e36f91be681ceaea3a4a74215a44 /include/vcl | |
parent | 848eb0ddecd4ef4c8da06624a5479efd3d73cf64 (diff) |
use more DECL_DLLPRIVATE_STATIC_LINK
to avoid unnecessarily exporting symbols
Change-Id: I224848cea217977088fe0643511660a7c99b7277
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124733
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/svapp.hxx | 2 | ||||
-rw-r--r-- | include/vcl/toolkit/button.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx index c2c5779911c8..b1db15915815 100644 --- a/include/vcl/svapp.hxx +++ b/include/vcl/svapp.hxx @@ -1341,7 +1341,7 @@ public: virtual void libreOfficeKitViewCallback(int nType, const char* pPayload) const override; private: - DECL_STATIC_LINK( Application, PostEventHandler, void*, void ); + DECL_DLLPRIVATE_STATIC_LINK( Application, PostEventHandler, void*, void ); }; class SolarMutexGuard diff --git a/include/vcl/toolkit/button.hxx b/include/vcl/toolkit/button.hxx index e68818ab62de..28024d8c7d0b 100644 --- a/include/vcl/toolkit/button.hxx +++ b/include/vcl/toolkit/button.hxx @@ -110,7 +110,7 @@ public: protected: /// Handler for click, in case we want the button to handle uno commands (.uno:Something). - DECL_STATIC_LINK(Button, dispatchCommandHandler, Button*, void); + DECL_DLLPRIVATE_STATIC_LINK(Button, dispatchCommandHandler, Button*, void); }; enum class PushButtonDropdownStyle |