cui/source/factory/dlgfact.cxx | 1 + xmlsecurity/source/xmlsec/xmlsec_init.cxx | 1 + 2 files changed, 2 insertions(+)
New commits: commit bddb0d87e809c96ee810de0e553f02bbe158907d Author: Stephan Bergmann <[email protected]> AuthorDate: Thu Mar 28 14:52:36 2024 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Thu Mar 28 20:46:43 2024 +0100 Missing include ...presumably since 50897e3fe001aeae5a6091ede155088461c798f3 "Drop transitional header xmlsecurity/xmlsec-wrapper.h", > xmlsecurity/source/xmlsec/xmlsec_init.cxx:29:9: error: use of undeclared identifier 'xmlSecInit' > 29 | if( xmlSecInit() < 0 ) { > | ^ > xmlsecurity/source/xmlsec/xmlsec_init.cxx:55:9: error: use of undeclared identifier 'xmlSecShutdown' > 55 | xmlSecShutdown() ; > | ^ etc. Change-Id: I1aab4bb3601102c4ac0025833b03fa35adc9434e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165465 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/xmlsecurity/source/xmlsec/xmlsec_init.cxx b/xmlsecurity/source/xmlsec/xmlsec_init.cxx index 472ece4c1180..df09f5700aa0 100644 --- a/xmlsecurity/source/xmlsec/xmlsec_init.cxx +++ b/xmlsecurity/source/xmlsec/xmlsec_init.cxx @@ -13,6 +13,7 @@ #include <com/sun/star/uno/RuntimeException.hpp> +#include <xmlsec/xmlsec.h> #include <xmlsec/xmlstreamio.hxx> #ifdef XMLSEC_CRYPTO_MSCRYPTO #include <xmlsec/mscng/crypto.h> commit 0ce23697cf9ab8e590b41bf5eced515d5f0eb9d9 Author: Stephan Bergmann <[email protected]> AuthorDate: Thu Mar 28 15:13:04 2024 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Thu Mar 28 20:46:30 2024 +0100 -Werror,-Wunused-parameter Change-Id: Ic7d32200332554b0a615120f69e4c86e612450c0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165466 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index 2a71808ae59d..9c422c4f71a6 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -1540,6 +1540,7 @@ AbstractDialogFactory_Impl::CreateWhatsNewDialog(weld::Window* pParent, const bo std::make_shared<WhatsNewDialog>(pParent, bWelcome)); #else (void) pParent; + (void) bWelcome; return nullptr; #endif }
