From 889d825879d1f044986c00a8038196bdb53e50dd Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Mon, 14 Sep 2015 10:19:13 +0900 Subject: xmlsecurity: tdf#88206 replace cppu::WeakImplHelper* etc. with the variadic variants. Change-Id: Ie8f972330f6bc88e205290dcbe666895b7bad43f Reviewed-on: https://gerrit.libreoffice.org/18557 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx | 2 +- xmlsecurity/source/component/certificatecontainer.hxx | 4 ++-- xmlsecurity/source/framework/decryptorimpl.hxx | 4 ++-- xmlsecurity/source/framework/encryptionengine.hxx | 4 ++-- xmlsecurity/source/framework/encryptorimpl.hxx | 4 ++-- xmlsecurity/source/framework/saxeventkeeperimpl.hxx | 4 ++-- xmlsecurity/source/framework/securityengine.hxx | 4 ++-- xmlsecurity/source/framework/signaturecreatorimpl.hxx | 4 ++-- xmlsecurity/source/framework/signatureengine.hxx | 4 ++-- xmlsecurity/source/framework/signatureverifierimpl.hxx | 4 ++-- xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx | 4 ++-- xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx | 4 ++-- xmlsecurity/source/helper/xmlsignaturehelper2.hxx | 7 +++---- xmlsecurity/source/helper/xsecctl.hxx | 4 ++-- xmlsecurity/source/helper/xsecparser.hxx | 4 ++-- xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/mscrypt/sanextension_mscryptimpl.hxx | 4 ++-- .../source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.hxx | 4 ++-- .../source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/nss/ciphercontext.hxx | 4 ++-- xmlsecurity/source/xmlsec/nss/digestcontext.hxx | 4 ++-- xmlsecurity/source/xmlsec/nss/nssinitializer.hxx | 4 ++-- xmlsecurity/source/xmlsec/nss/sanextension_nssimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/serialnumberadapter.cxx | 4 ++-- xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx | 4 ++-- xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx | 4 ++-- 36 files changed, 72 insertions(+), 73 deletions(-) diff --git a/xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx b/xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx index 21050aec8a39..8cdecd5fd698 100644 --- a/xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx +++ b/xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx @@ -30,7 +30,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/xmlsecurity/source/component/certificatecontainer.hxx b/xmlsecurity/source/component/certificatecontainer.hxx index 3dcbaa1166c5..d0907d7c8318 100644 --- a/xmlsecurity/source/component/certificatecontainer.hxx +++ b/xmlsecurity/source/component/certificatecontainer.hxx @@ -24,7 +24,7 @@ #include #include #include -#include +#include #include #include @@ -32,7 +32,7 @@ #include #include -class CertificateContainer : public ::cppu::WeakImplHelper2< css::lang::XServiceInfo, css::security::XCertificateContainer > +class CertificateContainer : public ::cppu::WeakImplHelper< css::lang::XServiceInfo, css::security::XCertificateContainer > { private: typedef std::map< OUString, OUString > Map; diff --git a/xmlsecurity/source/framework/decryptorimpl.hxx b/xmlsecurity/source/framework/decryptorimpl.hxx index 1474aef4511f..8fc66b4d5086 100644 --- a/xmlsecurity/source/framework/decryptorimpl.hxx +++ b/xmlsecurity/source/framework/decryptorimpl.hxx @@ -26,11 +26,11 @@ #include #include #include -#include +#include #include "encryptionengine.hxx" -typedef cppu::ImplInheritanceHelper3 +typedef cppu::ImplInheritanceHelper < EncryptionEngine, com::sun::star::xml::crypto::sax::XDecryptionResultBroadcaster, diff --git a/xmlsecurity/source/framework/encryptionengine.hxx b/xmlsecurity/source/framework/encryptionengine.hxx index e8cdda4b7303..dc8e0b6a381a 100644 --- a/xmlsecurity/source/framework/encryptionengine.hxx +++ b/xmlsecurity/source/framework/encryptionengine.hxx @@ -28,7 +28,7 @@ #include #include #include -#include +#include #include "securityengine.hxx" @@ -36,7 +36,7 @@ namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } -class EncryptionEngine : public cppu::ImplInheritanceHelper1 +class EncryptionEngine : public cppu::ImplInheritanceHelper < SecurityEngine, com::sun::star::xml::crypto::sax::XBlockerMonitor diff --git a/xmlsecurity/source/framework/encryptorimpl.hxx b/xmlsecurity/source/framework/encryptorimpl.hxx index 94b84c5b2c32..5c28b20efefc 100644 --- a/xmlsecurity/source/framework/encryptorimpl.hxx +++ b/xmlsecurity/source/framework/encryptorimpl.hxx @@ -27,11 +27,11 @@ #include #include #include -#include +#include #include "encryptionengine.hxx" -typedef cppu::ImplInheritanceHelper4 +typedef cppu::ImplInheritanceHelper < EncryptionEngine, com::sun::star::xml::crypto::sax::XEncryptionResultBroadcaster, diff --git a/xmlsecurity/source/framework/saxeventkeeperimpl.hxx b/xmlsecurity/source/framework/saxeventkeeperimpl.hxx index a1d15e87f967..9dea0418e807 100644 --- a/xmlsecurity/source/framework/saxeventkeeperimpl.hxx +++ b/xmlsecurity/source/framework/saxeventkeeperimpl.hxx @@ -30,7 +30,7 @@ #include #include #include -#include +#include #include "buffernode.hxx" #include "elementmark.hxx" @@ -38,7 +38,7 @@ #include -class SAXEventKeeperImpl : public cppu::WeakImplHelper6 +class SAXEventKeeperImpl : public cppu::WeakImplHelper < com::sun::star::xml::crypto::sax::XSecuritySAXEventKeeper, com::sun::star::xml::crypto::sax::XReferenceResolvedBroadcaster, diff --git a/xmlsecurity/source/framework/securityengine.hxx b/xmlsecurity/source/framework/securityengine.hxx index 8f859104eb76..7f7706c4bb4a 100644 --- a/xmlsecurity/source/framework/securityengine.hxx +++ b/xmlsecurity/source/framework/securityengine.hxx @@ -27,9 +27,9 @@ #include #include -#include +#include -class SecurityEngine : public cppu::WeakImplHelper3 +class SecurityEngine : public cppu::WeakImplHelper < com::sun::star::xml::crypto::sax::XReferenceResolvedListener, com::sun::star::xml::crypto::sax::XKeyCollector, diff --git a/xmlsecurity/source/framework/signaturecreatorimpl.hxx b/xmlsecurity/source/framework/signaturecreatorimpl.hxx index 76653a111e29..f14f330bdc45 100644 --- a/xmlsecurity/source/framework/signaturecreatorimpl.hxx +++ b/xmlsecurity/source/framework/signaturecreatorimpl.hxx @@ -27,11 +27,11 @@ #include #include #include -#include +#include #include "signatureengine.hxx" -typedef cppu::ImplInheritanceHelper4 +typedef cppu::ImplInheritanceHelper < SignatureEngine, com::sun::star::xml::crypto::sax::XBlockerMonitor, diff --git a/xmlsecurity/source/framework/signatureengine.hxx b/xmlsecurity/source/framework/signatureengine.hxx index 23c7cdedf3c4..d9625e73e014 100644 --- a/xmlsecurity/source/framework/signatureengine.hxx +++ b/xmlsecurity/source/framework/signatureengine.hxx @@ -32,13 +32,13 @@ #include #include -#include +#include #include "securityengine.hxx" #include -class SignatureEngine : public cppu::ImplInheritanceHelper2 +class SignatureEngine : public cppu::ImplInheritanceHelper < SecurityEngine, com::sun::star::xml::crypto::sax::XReferenceCollector, diff --git a/xmlsecurity/source/framework/signatureverifierimpl.hxx b/xmlsecurity/source/framework/signatureverifierimpl.hxx index 950a9a499e83..89e36a308c7e 100644 --- a/xmlsecurity/source/framework/signatureverifierimpl.hxx +++ b/xmlsecurity/source/framework/signatureverifierimpl.hxx @@ -27,11 +27,11 @@ #include #include #include -#include +#include #include "signatureengine.hxx" -typedef cppu::ImplInheritanceHelper3 +typedef cppu::ImplInheritanceHelper < SignatureEngine, com::sun::star::xml::crypto::sax::XSignatureVerifyResultBroadcaster, diff --git a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx index b76abcab09ae..1103fbb2259e 100644 --- a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx +++ b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include @@ -34,7 +34,7 @@ #include #include -class XMLEncryptionTemplateImpl : public ::cppu::WeakImplHelper2< +class XMLEncryptionTemplateImpl : public ::cppu::WeakImplHelper< ::com::sun::star::xml::crypto::XXMLEncryptionTemplate , ::com::sun::star::lang::XServiceInfo > { diff --git a/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx b/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx index e6d395c247bb..f34f3e657178 100644 --- a/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx +++ b/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include @@ -35,7 +35,7 @@ #include -class XMLSignatureTemplateImpl : public ::cppu::WeakImplHelper2< +class XMLSignatureTemplateImpl : public ::cppu::WeakImplHelper< ::com::sun::star::xml::crypto::XXMLSignatureTemplate , ::com::sun::star::lang::XServiceInfo > { diff --git a/xmlsecurity/source/helper/xmlsignaturehelper2.hxx b/xmlsecurity/source/helper/xmlsignaturehelper2.hxx index 6a705f400e70..844f34ee4dc5 100644 --- a/xmlsecurity/source/helper/xmlsignaturehelper2.hxx +++ b/xmlsecurity/source/helper/xmlsignaturehelper2.hxx @@ -23,8 +23,7 @@ #include #include -#include -#include +#include #include #include @@ -41,7 +40,7 @@ namespace embed { // MT: Not needed any more, remove later... -class ImplXMLSignatureListener : public cppu::WeakImplHelper3 +class ImplXMLSignatureListener : public cppu::WeakImplHelper < com::sun::star::xml::crypto::sax::XSignatureCreationResultListener, com::sun::star::xml::crypto::sax::XSignatureVerifyResultListener, @@ -99,7 +98,7 @@ public: // XUriBinding -class UriBindingHelper : public cppu::WeakImplHelper1 +class UriBindingHelper : public cppu::WeakImplHelper < com::sun::star::xml::crypto::XUriBinding > diff --git a/xmlsecurity/source/helper/xsecctl.hxx b/xmlsecurity/source/helper/xsecctl.hxx index d6aae028f2ba..f988212e3322 100644 --- a/xmlsecurity/source/helper/xsecctl.hxx +++ b/xmlsecurity/source/helper/xsecctl.hxx @@ -43,7 +43,7 @@ #include -#include +#include #include @@ -138,7 +138,7 @@ public: } }; -class XSecController : public cppu::WeakImplHelper4 +class XSecController : public cppu::WeakImplHelper < com::sun::star::xml::crypto::sax::XSecurityController, //com::sun::star::beans::XFastPropertySet, diff --git a/xmlsecurity/source/helper/xsecparser.hxx b/xmlsecurity/source/helper/xsecparser.hxx index 85a9260d0ed5..0e22221aee6c 100644 --- a/xmlsecurity/source/helper/xsecparser.hxx +++ b/xmlsecurity/source/helper/xsecparser.hxx @@ -27,9 +27,9 @@ #include #include -#include +#include -class XSecParser: public cppu::WeakImplHelper2 +class XSecParser: public cppu::WeakImplHelper < com::sun::star::xml::sax::XDocumentHandler, com::sun::star::lang::XInitialization diff --git a/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx b/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx index 3e89ce56699e..17d3fa34994a 100644 --- a/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx +++ b/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx @@ -23,12 +23,12 @@ #include #include #include -#include +#include #include #include #include -class CertificateExtension_XmlSecImpl : public ::cppu::WeakImplHelper1< +class CertificateExtension_XmlSecImpl : public ::cppu::WeakImplHelper< ::com::sun::star::security::XCertificateExtension > { private: diff --git a/xmlsecurity/source/xmlsec/mscrypt/sanextension_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/sanextension_mscryptimpl.hxx index 5abd5be88951..c88a68ac9200 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/sanextension_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/sanextension_mscryptimpl.hxx @@ -31,14 +31,14 @@ #include #include #include -#include +#include #include #include #include #include #include -class SanExtensionImpl : public ::cppu::WeakImplHelper1< +class SanExtensionImpl : public ::cppu::WeakImplHelper< ::com::sun::star::security::XSanExtension > { private: diff --git a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx index 95d6671c86de..e3b2c3121fb1 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include @@ -50,7 +50,7 @@ #include -class SecurityEnvironment_MSCryptImpl : public ::cppu::WeakImplHelper3< +class SecurityEnvironment_MSCryptImpl : public ::cppu::WeakImplHelper< ::com::sun::star::xml::crypto::XSecurityEnvironment , ::com::sun::star::lang::XServiceInfo, ::com::sun::star::lang::XUnoTunnel > diff --git a/xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.hxx index 57a9af70426d..39d2ad7c1a6c 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.hxx @@ -26,11 +26,11 @@ #include #include #include -#include +#include #include -class SEInitializer_MSCryptImpl : public cppu::WeakImplHelper2 +class SEInitializer_MSCryptImpl : public cppu::WeakImplHelper < com::sun::star::xml::crypto::XSEInitializer, com::sun::star::lang::XServiceInfo diff --git a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx index d136b8be33fa..674940bbe192 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx @@ -31,13 +31,13 @@ #include #include #include -#include +#include #include #include #include #include -class X509Certificate_MSCryptImpl : public ::cppu::WeakImplHelper2< +class X509Certificate_MSCryptImpl : public ::cppu::WeakImplHelper< ::com::sun::star::security::XCertificate , ::com::sun::star::lang::XUnoTunnel > { diff --git a/xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.hxx index b36ead227849..cbecf06a40ae 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.hxx @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include @@ -34,7 +34,7 @@ #include #include -class XMLEncryption_MSCryptImpl : public ::cppu::WeakImplHelper2< +class XMLEncryption_MSCryptImpl : public ::cppu::WeakImplHelper< ::com::sun::star::xml::crypto::XXMLEncryption , ::com::sun::star::lang::XServiceInfo > { diff --git a/xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.hxx index 185787ad2f1d..a51ca82b6b7a 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.hxx @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include @@ -35,7 +35,7 @@ #include -class XMLSecurityContext_MSCryptImpl : public ::cppu::WeakImplHelper2< +class XMLSecurityContext_MSCryptImpl : public ::cppu::WeakImplHelper< ::com::sun::star::xml::crypto::XXMLSecurityContext , ::com::sun::star::lang::XServiceInfo > { diff --git a/xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.hxx index 13b2c16a170a..4acbab9645cd 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.hxx @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include @@ -34,7 +34,7 @@ #include #include -class XMLSignature_MSCryptImpl : public ::cppu::WeakImplHelper2< +class XMLSignature_MSCryptImpl : public ::cppu::WeakImplHelper< ::com::sun::star::xml::crypto::XXMLSignature , ::com::sun::star::lang::XServiceInfo > { diff --git a/xmlsecurity/source/xmlsec/nss/ciphercontext.hxx b/xmlsecurity/source/xmlsec/nss/ciphercontext.hxx index 80fb67ac2410..82572e78ecb1 100644 --- a/xmlsecurity/source/xmlsec/nss/ciphercontext.hxx +++ b/xmlsecurity/source/xmlsec/nss/ciphercontext.hxx @@ -22,11 +22,11 @@ #include -#include +#include #include #include -class OCipherContext : public cppu::WeakImplHelper1< ::com::sun::star::xml::crypto::XCipherContext > +class OCipherContext : public cppu::WeakImplHelper< ::com::sun::star::xml::crypto::XCipherContext > { private: ::osl::Mutex m_aMutex; diff --git a/xmlsecurity/source/xmlsec/nss/digestcontext.hxx b/xmlsecurity/source/xmlsec/nss/digestcontext.hxx index e380f9642fed..8f8454cc215c 100644 --- a/xmlsecurity/source/xmlsec/nss/digestcontext.hxx +++ b/xmlsecurity/source/xmlsec/nss/digestcontext.hxx @@ -22,10 +22,10 @@ #include -#include +#include #include -class ODigestContext : public cppu::WeakImplHelper1< ::com::sun::star::xml::crypto::XDigestContext > +class ODigestContext : public cppu::WeakImplHelper< ::com::sun::star::xml::crypto::XDigestContext > { private: ::osl::Mutex m_aMutex; diff --git a/xmlsecurity/source/xmlsec/nss/nssinitializer.hxx b/xmlsecurity/source/xmlsec/nss/nssinitializer.hxx index 0e579feb0e73..099d4307a879 100644 --- a/xmlsecurity/source/xmlsec/nss/nssinitializer.hxx +++ b/xmlsecurity/source/xmlsec/nss/nssinitializer.hxx @@ -24,11 +24,11 @@ #include #include -#include +#include #define NSS_SERVICE_NAME "com.sun.star.xml.crypto.NSSInitializer" -class ONSSInitializer : public cppu::WeakImplHelper2 +class ONSSInitializer : public cppu::WeakImplHelper < ::com::sun::star::xml::crypto::XNSSInitializer, ::com::sun::star::lang::XServiceInfo diff --git a/xmlsecurity/source/xmlsec/nss/sanextension_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/sanextension_nssimpl.hxx index 14a7d9336c8e..0097fcb6ab68 100644 --- a/xmlsecurity/source/xmlsec/nss/sanextension_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/sanextension_nssimpl.hxx @@ -23,14 +23,14 @@ #include #include #include -#include +#include #include #include #include #include #include -class SanExtensionImpl : public ::cppu::WeakImplHelper1< +class SanExtensionImpl : public ::cppu::WeakImplHelper< ::com::sun::star::security::XSanExtension > { private: diff --git a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx index cf48fb6ac108..29bee418f1d8 100644 --- a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include @@ -45,7 +45,7 @@ #include "xmlsecurity/xmlsec-wrapper.h" -class SecurityEnvironment_NssImpl : public ::cppu::WeakImplHelper3< +class SecurityEnvironment_NssImpl : public ::cppu::WeakImplHelper< ::com::sun::star::xml::crypto::XSecurityEnvironment , ::com::sun::star::lang::XServiceInfo, ::com::sun::star::lang::XUnoTunnel > diff --git a/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx index a811a31b5bdc..8041c73e0d9f 100644 --- a/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx @@ -23,13 +23,13 @@ #include #include -#include +#include #include #include "nssinitializer.hxx" -class SEInitializer_NssImpl : public cppu::ImplInheritanceHelper1 +class SEInitializer_NssImpl : public cppu::ImplInheritanceHelper < ONSSInitializer, ::com::sun::star::xml::crypto::XSEInitializer diff --git a/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx index bf400739861d..1782de34684a 100644 --- a/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include #include @@ -31,7 +31,7 @@ #include "cert.h" -class X509Certificate_NssImpl : public ::cppu::WeakImplHelper2< +class X509Certificate_NssImpl : public ::cppu::WeakImplHelper< ::com::sun::star::security::XCertificate , ::com::sun::star::lang::XUnoTunnel > { diff --git a/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx index 14b7aaf7b9f7..3ad29ce884a6 100644 --- a/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include @@ -34,7 +34,7 @@ #include #include -class XMLEncryption_NssImpl : public ::cppu::WeakImplHelper2< +class XMLEncryption_NssImpl : public ::cppu::WeakImplHelper< ::com::sun::star::xml::crypto::XXMLEncryption , ::com::sun::star::lang::XServiceInfo > { diff --git a/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx index 59a39b845c04..2b4537670809 100644 --- a/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include @@ -36,7 +36,7 @@ #include -class XMLSecurityContext_NssImpl : public ::cppu::WeakImplHelper2< +class XMLSecurityContext_NssImpl : public ::cppu::WeakImplHelper< ::com::sun::star::xml::crypto::XXMLSecurityContext , ::com::sun::star::lang::XServiceInfo > { diff --git a/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx index 908da34e350e..4e2ac2a6a766 100644 --- a/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include @@ -34,7 +34,7 @@ #include #include -class XMLSignature_NssImpl : public ::cppu::WeakImplHelper2< +class XMLSignature_NssImpl : public ::cppu::WeakImplHelper< ::com::sun::star::xml::crypto::XXMLSignature , ::com::sun::star::lang::XServiceInfo > { diff --git a/xmlsecurity/source/xmlsec/serialnumberadapter.cxx b/xmlsecurity/source/xmlsec/serialnumberadapter.cxx index 9ffddc0f38dc..92ba0227f351 100644 --- a/xmlsecurity/source/xmlsec/serialnumberadapter.cxx +++ b/xmlsecurity/source/xmlsec/serialnumberadapter.cxx @@ -27,7 +27,7 @@ #include #include #include -#include +#include #include #include #include @@ -39,7 +39,7 @@ namespace { class Service: - public cppu::WeakImplHelper2< + public cppu::WeakImplHelper< css::lang::XServiceInfo, css::security::XSerialNumberAdapter >, private boost::noncopyable { diff --git a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx index c083146eb862..5208487a22c0 100644 --- a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx +++ b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx @@ -24,7 +24,7 @@ #include #include #include -#include +#include #include "saxhelper.hxx" @@ -38,7 +38,7 @@ namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } -class XMLDocumentWrapper_XmlSecImpl : public cppu::WeakImplHelper4 +class XMLDocumentWrapper_XmlSecImpl : public cppu::WeakImplHelper < com::sun::star::xml::wrapper::XXMLDocumentWrapper, com::sun::star::xml::sax::XDocumentHandler, diff --git a/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx b/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx index 4ecaf789b7b3..e406f007e96a 100644 --- a/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx +++ b/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx @@ -24,7 +24,7 @@ #include #include #include -#include +#include #include @@ -32,7 +32,7 @@ namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } -class XMLElementWrapper_XmlSecImpl : public cppu::WeakImplHelper3 +class XMLElementWrapper_XmlSecImpl : public cppu::WeakImplHelper < com::sun::star::xml::wrapper::XXMLElementWrapper, com::sun::star::lang::XUnoTunnel, -- cgit v1.2.3