diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2024-03-15 11:31:56 +0500 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2024-03-15 09:19:14 +0100 |
commit | 9326fbcb581cf7152ebcf047e2b1bceca76f5426 (patch) | |
tree | 96e341b601e1f41b0446fafaa96f7efa46ea10c1 /include | |
parent | f45402ae3f5241b460d9f1dcb04183893e1f91f7 (diff) |
Fix build
[LNK] Library/libupdatecheckuilo.so
/home/mk/core/extensions/source/update/ui/updatecheckui.cxx:96: error: undefined reference to 'MenuBarUpdateIconManager::MenuBarUpdateIconManager()'
/home/mk/core/extensions/source/update/ui/updatecheckui.cxx:105: error: undefined reference to 'MenuBarUpdateIconManager::SetBubbleImage(Image const&)'
/home/mk/core/extensions/source/update/ui/updatecheckui.cxx:107: error: undefined reference to 'MenuBarUpdateIconManager::~MenuBarUpdateIconManager()'
/home/mk/core/extensions/source/update/ui/updatecheckui.cxx:166: error: undefined reference to 'MenuBarUpdateIconManager::RemoveBubbleWindow()'
/home/mk/core/extensions/source/update/ui/updatecheckui.cxx:187: error: undefined reference to 'MenuBarUpdateIconManager::SetBubbleTitle(rtl::OUString const&)'
/home/mk/core/extensions/source/update/ui/updatecheckui.cxx:191: error: undefined reference to 'MenuBarUpdateIconManager::SetBubbleText(rtl::OUString const&)'
/home/mk/core/extensions/source/update/ui/updatecheckui.cxx:197: error: undefined reference to 'MenuBarUpdateIconManager::SetBubbleImage(Image const&)'
/home/mk/core/extensions/source/update/ui/updatecheckui.cxx:203: error: undefined reference to 'MenuBarUpdateIconManager::SetShowBubble(bool)'
/home/mk/core/extensions/source/update/ui/updatecheckui.cxx:215: error: undefined reference to 'MenuBarUpdateIconManager::SetShowMenuIcon(bool)'
/home/mk/core/extensions/source/update/ui/updatecheckui.cxx:55: error: undefined reference to 'MenuBarUpdateIconManager::~MenuBarUpdateIconManager()'
collect2: error: ld returned 1 exit status
Change-Id: I7175126d82731c3dd2cdba64646006f4be664450
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164855
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/menubarupdateicon.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/vcl/menubarupdateicon.hxx b/include/vcl/menubarupdateicon.hxx index 5610772e668f..b068bb7db6c5 100644 --- a/include/vcl/menubarupdateicon.hxx +++ b/include/vcl/menubarupdateicon.hxx @@ -71,14 +71,14 @@ private: SAL_DLLPRIVATE void RemoveMenuBarIcons(); public: - SAL_DLLPRIVATE MenuBarUpdateIconManager(); - SAL_DLLPRIVATE ~MenuBarUpdateIconManager(); + MenuBarUpdateIconManager(); + ~MenuBarUpdateIconManager(); - SAL_DLLPRIVATE void SetShowMenuIcon(bool bShowMenuIcon); - SAL_DLLPRIVATE void SetShowBubble(bool bShowBubble); - SAL_DLLPRIVATE void SetBubbleImage(const Image& rImage); - SAL_DLLPRIVATE void SetBubbleTitle(const OUString& rTitle); - SAL_DLLPRIVATE void SetBubbleText(const OUString& rText); + void SetShowMenuIcon(bool bShowMenuIcon); + void SetShowBubble(bool bShowBubble); + void SetBubbleImage(const Image& rImage); + void SetBubbleTitle(const OUString& rTitle); + void SetBubbleText(const OUString& rText); void SetClickHdl(const Link<LinkParamNone*, void>& rHdl) { maClickHdl = rHdl; } @@ -87,7 +87,7 @@ public: const OUString& GetBubbleTitle() const { return maBubbleTitle; } const OUString& GetBubbleText() const { return maBubbleText; } - SAL_DLLPRIVATE void RemoveBubbleWindow(); + void RemoveBubbleWindow(); }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |