include/vcl/menubarupdateicon.hxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-)
New commits: commit 9326fbcb581cf7152ebcf047e2b1bceca76f5426 Author: Mike Kaganski <[email protected]> AuthorDate: Fri Mar 15 11:31:56 2024 +0500 Commit: Mike Kaganski <[email protected]> CommitDate: Fri Mar 15 09:19:14 2024 +0100 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 <[email protected]> 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: */
