summaryrefslogtreecommitdiff
path: root/xmlsecurity/source
diff options
context:
space:
mode:
Diffstat (limited to 'xmlsecurity/source')
-rw-r--r--xmlsecurity/source/component/certificatecontainer.hxx2
-rw-r--r--xmlsecurity/source/framework/decryptorimpl.hxx2
-rw-r--r--xmlsecurity/source/framework/elementcollector.hxx2
-rw-r--r--xmlsecurity/source/framework/encryptionengine.hxx2
-rw-r--r--xmlsecurity/source/framework/encryptorimpl.hxx2
-rw-r--r--xmlsecurity/source/framework/saxeventkeeperimpl.hxx2
-rw-r--r--xmlsecurity/source/framework/securityengine.hxx2
-rw-r--r--xmlsecurity/source/framework/signaturecreatorimpl.hxx2
-rw-r--r--xmlsecurity/source/framework/signatureengine.hxx2
-rw-r--r--xmlsecurity/source/framework/signatureverifierimpl.hxx2
-rw-r--r--xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx2
-rw-r--r--xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx2
-rw-r--r--xmlsecurity/source/helper/ooxmlsecparser.hxx2
-rw-r--r--xmlsecurity/source/helper/xmlsignaturehelper2.hxx2
-rw-r--r--xmlsecurity/source/helper/xsecctl.hxx2
-rw-r--r--xmlsecurity/source/helper/xsecparser.hxx2
-rw-r--r--xmlsecurity/source/xmlsec/nss/ciphercontext.hxx2
-rw-r--r--xmlsecurity/source/xmlsec/nss/digestcontext.hxx2
-rw-r--r--xmlsecurity/source/xmlsec/nss/nssinitializer.hxx2
-rw-r--r--xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx2
-rw-r--r--xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx2
-rw-r--r--xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx2
-rw-r--r--xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx2
-rw-r--r--xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx2
-rw-r--r--xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx2
-rw-r--r--xmlsecurity/source/xmlsec/serialnumberadapter.cxx2
-rw-r--r--xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx2
-rw-r--r--xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx2
28 files changed, 28 insertions, 28 deletions
diff --git a/xmlsecurity/source/component/certificatecontainer.hxx b/xmlsecurity/source/component/certificatecontainer.hxx
index e71947a81401..34b0606ca61b 100644
--- a/xmlsecurity/source/component/certificatecontainer.hxx
+++ b/xmlsecurity/source/component/certificatecontainer.hxx
@@ -46,7 +46,7 @@ class CertificateContainer : public ::cppu::WeakImplHelper< css::lang::XServiceI
public:
explicit CertificateContainer(const css::uno::Reference< css::lang::XMultiServiceFactory >& ) {}
- virtual ~CertificateContainer() {}
+ virtual ~CertificateContainer() override {}
virtual sal_Bool SAL_CALL addCertificate( const OUString & url, const OUString & certificate_name, sal_Bool trust ) throw(css::uno::RuntimeException, std::exception) override;
virtual css::security::CertificateContainerStatus SAL_CALL hasCertificate( const OUString & url, const OUString & certificate_name ) throw(css::uno::RuntimeException, std::exception) override;
diff --git a/xmlsecurity/source/framework/decryptorimpl.hxx b/xmlsecurity/source/framework/decryptorimpl.hxx
index 9b5cd239becd..1305226e8bb3 100644
--- a/xmlsecurity/source/framework/decryptorimpl.hxx
+++ b/xmlsecurity/source/framework/decryptorimpl.hxx
@@ -61,7 +61,7 @@ private:
public:
explicit DecryptorImpl(const css::uno::Reference< css::uno::XComponentContext > & xContext);
- virtual ~DecryptorImpl();
+ virtual ~DecryptorImpl() override;
/* XDecryptionResultBroadcaster */
virtual void SAL_CALL addDecryptionResultListener(
diff --git a/xmlsecurity/source/framework/elementcollector.hxx b/xmlsecurity/source/framework/elementcollector.hxx
index e14430b65c3d..286d93aea15a 100644
--- a/xmlsecurity/source/framework/elementcollector.hxx
+++ b/xmlsecurity/source/framework/elementcollector.hxx
@@ -68,7 +68,7 @@ public:
css::xml::crypto::sax::ElementMarkPriority nPriority,
bool bToModify,
const css::uno::Reference< css::xml::crypto::sax::XReferenceResolvedListener >& xReferenceResolvedListener);
- virtual ~ElementCollector() {};
+ virtual ~ElementCollector() override {};
css::xml::crypto::sax::ElementMarkPriority getPriority() const { return m_nPriority;}
bool getModify() const { return m_bToModify;}
diff --git a/xmlsecurity/source/framework/encryptionengine.hxx b/xmlsecurity/source/framework/encryptionengine.hxx
index a535c30414d6..2fe4775c5449 100644
--- a/xmlsecurity/source/framework/encryptionengine.hxx
+++ b/xmlsecurity/source/framework/encryptionengine.hxx
@@ -67,7 +67,7 @@ protected:
protected:
explicit EncryptionEngine( const css::uno::Reference< css::uno::XComponentContext > & xContext );
- virtual ~EncryptionEngine(){};
+ virtual ~EncryptionEngine() override {};
virtual void tryToPerform( )
throw (css::uno::Exception, css::uno::RuntimeException) override;
diff --git a/xmlsecurity/source/framework/encryptorimpl.hxx b/xmlsecurity/source/framework/encryptorimpl.hxx
index 368fe94a430e..a3c3f7c49735 100644
--- a/xmlsecurity/source/framework/encryptorimpl.hxx
+++ b/xmlsecurity/source/framework/encryptorimpl.hxx
@@ -70,7 +70,7 @@ private:
public:
explicit EncryptorImpl(const css::uno::Reference< css::uno::XComponentContext > & xContext);
- virtual ~EncryptorImpl();
+ virtual ~EncryptorImpl() override;
/* XEncryptionResultBroadcaster */
virtual void SAL_CALL addEncryptionResultListener(
diff --git a/xmlsecurity/source/framework/saxeventkeeperimpl.hxx b/xmlsecurity/source/framework/saxeventkeeperimpl.hxx
index 8365c7c22077..f70e5ca7a3eb 100644
--- a/xmlsecurity/source/framework/saxeventkeeperimpl.hxx
+++ b/xmlsecurity/source/framework/saxeventkeeperimpl.hxx
@@ -211,7 +211,7 @@ private:
public:
SAXEventKeeperImpl();
- virtual ~SAXEventKeeperImpl();
+ virtual ~SAXEventKeeperImpl() override;
/* XSAXEventKeeper */
virtual sal_Int32 SAL_CALL addElementCollector( )
diff --git a/xmlsecurity/source/framework/securityengine.hxx b/xmlsecurity/source/framework/securityengine.hxx
index 171e4297d65a..17fab0db39c2 100644
--- a/xmlsecurity/source/framework/securityengine.hxx
+++ b/xmlsecurity/source/framework/securityengine.hxx
@@ -98,7 +98,7 @@ protected:
protected:
explicit SecurityEngine();
- virtual ~SecurityEngine() {};
+ virtual ~SecurityEngine() override {};
/*
* perform the security operation.
diff --git a/xmlsecurity/source/framework/signaturecreatorimpl.hxx b/xmlsecurity/source/framework/signaturecreatorimpl.hxx
index 2b14cad9cd20..2171738b5208 100644
--- a/xmlsecurity/source/framework/signaturecreatorimpl.hxx
+++ b/xmlsecurity/source/framework/signaturecreatorimpl.hxx
@@ -68,7 +68,7 @@ private:
public:
explicit SignatureCreatorImpl( const css::uno::Reference< css::uno::XComponentContext > & xContext );
- virtual ~SignatureCreatorImpl();
+ virtual ~SignatureCreatorImpl() override;
/* XBlockerMonitor */
virtual void SAL_CALL setBlockerId( sal_Int32 id )
diff --git a/xmlsecurity/source/framework/signatureengine.hxx b/xmlsecurity/source/framework/signatureengine.hxx
index fac0b6840855..4ba5d8cb07d2 100644
--- a/xmlsecurity/source/framework/signatureengine.hxx
+++ b/xmlsecurity/source/framework/signatureengine.hxx
@@ -86,7 +86,7 @@ protected:
protected:
explicit SignatureEngine( const css::uno::Reference< css::uno::XComponentContext > & xContext);
- virtual ~SignatureEngine() {};
+ virtual ~SignatureEngine() override {};
virtual void tryToPerform( )
throw (css::uno::Exception, css::uno::RuntimeException) override;
diff --git a/xmlsecurity/source/framework/signatureverifierimpl.hxx b/xmlsecurity/source/framework/signatureverifierimpl.hxx
index 66dbe548b8d8..5159b86a837a 100644
--- a/xmlsecurity/source/framework/signatureverifierimpl.hxx
+++ b/xmlsecurity/source/framework/signatureverifierimpl.hxx
@@ -62,7 +62,7 @@ private:
public:
explicit SignatureVerifierImpl( const css::uno::Reference<
css::uno::XComponentContext >& rxContext);
- virtual ~SignatureVerifierImpl();
+ virtual ~SignatureVerifierImpl() override;
/* XSignatureVerifyResultBroadcaster */
virtual void SAL_CALL addSignatureVerifyResultListener(
diff --git a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx
index 4e42b23bd9bc..5179df1079e7 100644
--- a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx
+++ b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx
@@ -45,7 +45,7 @@ class XMLEncryptionTemplateImpl : public ::cppu::WeakImplHelper<
public:
explicit XMLEncryptionTemplateImpl();
- virtual ~XMLEncryptionTemplateImpl();
+ virtual ~XMLEncryptionTemplateImpl() override;
//Methods from XXMLEncryptionTemplate
virtual void SAL_CALL setTemplate(
diff --git a/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx b/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx
index 2f90cbf41584..853b68ab4eb1 100644
--- a/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx
+++ b/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx
@@ -47,7 +47,7 @@ class XMLSignatureTemplateImpl : public ::cppu::WeakImplHelper<
public:
explicit XMLSignatureTemplateImpl();
- virtual ~XMLSignatureTemplateImpl();
+ virtual ~XMLSignatureTemplateImpl() override;
//Methods from XXMLSignatureTemplate
virtual void SAL_CALL setTemplate(
diff --git a/xmlsecurity/source/helper/ooxmlsecparser.hxx b/xmlsecurity/source/helper/ooxmlsecparser.hxx
index cd3eed01c2a6..a78c3e369c24 100644
--- a/xmlsecurity/source/helper/ooxmlsecparser.hxx
+++ b/xmlsecurity/source/helper/ooxmlsecparser.hxx
@@ -53,7 +53,7 @@ class OOXMLSecParser: public cppu::WeakImplHelper
public:
explicit OOXMLSecParser(XSecController* pXSecController);
- virtual ~OOXMLSecParser();
+ virtual ~OOXMLSecParser() override;
// XDocumentHandler
virtual void SAL_CALL startDocument() throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override;
diff --git a/xmlsecurity/source/helper/xmlsignaturehelper2.hxx b/xmlsecurity/source/helper/xmlsignaturehelper2.hxx
index 320723938ff9..e07af2e0f216 100644
--- a/xmlsecurity/source/helper/xmlsignaturehelper2.hxx
+++ b/xmlsecurity/source/helper/xmlsignaturehelper2.hxx
@@ -59,7 +59,7 @@ public:
ImplXMLSignatureListener(const Link<XMLSignatureCreationResult&,void>& rCreationResultListenerListener,
const Link<XMLSignatureVerifyResult&,void>& rVerifyResultListenerListener,
const Link<LinkParamNone*, void>& rStartVerifySignatureElement);
- virtual ~ImplXMLSignatureListener();
+ virtual ~ImplXMLSignatureListener() override;
void setNextHandler(const css::uno::Reference< css::xml::sax::XDocumentHandler >& xNextHandler);
diff --git a/xmlsecurity/source/helper/xsecctl.hxx b/xmlsecurity/source/helper/xsecctl.hxx
index 1b8222acd420..359527851048 100644
--- a/xmlsecurity/source/helper/xsecctl.hxx
+++ b/xmlsecurity/source/helper/xsecctl.hxx
@@ -385,7 +385,7 @@ private:
public:
explicit XSecController(const css::uno::Reference<css::uno::XComponentContext>& rxCtx);
- virtual ~XSecController();
+ virtual ~XSecController() override;
sal_Int32 getNewSecurityId( );
diff --git a/xmlsecurity/source/helper/xsecparser.hxx b/xmlsecurity/source/helper/xsecparser.hxx
index 1b0bf766b9ec..204ff67876dd 100644
--- a/xmlsecurity/source/helper/xsecparser.hxx
+++ b/xmlsecurity/source/helper/xsecparser.hxx
@@ -103,7 +103,7 @@ public:
XSecParser( XSecController* pXSecController,
const css::uno::Reference<
css::xml::sax::XDocumentHandler >& xNextHandler );
- virtual ~XSecParser(){};
+ virtual ~XSecParser() override {};
/*
* XDocumentHandler
diff --git a/xmlsecurity/source/xmlsec/nss/ciphercontext.hxx b/xmlsecurity/source/xmlsec/nss/ciphercontext.hxx
index 8d474b819e1b..9d8d54535caf 100644
--- a/xmlsecurity/source/xmlsec/nss/ciphercontext.hxx
+++ b/xmlsecurity/source/xmlsec/nss/ciphercontext.hxx
@@ -65,7 +65,7 @@ private:
public:
- virtual ~OCipherContext()
+ virtual ~OCipherContext() override
{
Dispose();
}
diff --git a/xmlsecurity/source/xmlsec/nss/digestcontext.hxx b/xmlsecurity/source/xmlsec/nss/digestcontext.hxx
index 56882a57852e..59074b282d08 100644
--- a/xmlsecurity/source/xmlsec/nss/digestcontext.hxx
+++ b/xmlsecurity/source/xmlsec/nss/digestcontext.hxx
@@ -48,7 +48,7 @@ public:
, m_bBroken( false )
{}
- virtual ~ODigestContext();
+ virtual ~ODigestContext() override;
// XDigestContext
diff --git a/xmlsecurity/source/xmlsec/nss/nssinitializer.hxx b/xmlsecurity/source/xmlsec/nss/nssinitializer.hxx
index 9dc198b1a51c..8640544aba5a 100644
--- a/xmlsecurity/source/xmlsec/nss/nssinitializer.hxx
+++ b/xmlsecurity/source/xmlsec/nss/nssinitializer.hxx
@@ -42,7 +42,7 @@ protected:
public:
explicit ONSSInitializer(const css::uno::Reference<css::uno::XComponentContext> &rxContext);
- virtual ~ONSSInitializer();
+ virtual ~ONSSInitializer() override;
static bool initNSS( const css::uno::Reference< css::uno::XComponentContext > &rxContext );
diff --git a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx
index 38ebdf031e44..a6fa7a7b21a5 100644
--- a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx
+++ b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx
@@ -64,7 +64,7 @@ private:
public:
SecurityEnvironment_NssImpl();
- virtual ~SecurityEnvironment_NssImpl();
+ virtual ~SecurityEnvironment_NssImpl() override;
//Methods from XSecurityEnvironment
diff --git a/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx
index ecfd4a1674a2..685473283195 100644
--- a/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx
+++ b/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx
@@ -37,7 +37,7 @@ class SEInitializer_NssImpl : public cppu::ImplInheritanceHelper
{
public:
explicit SEInitializer_NssImpl(const css::uno::Reference<css::uno::XComponentContext > &rxContext);
- virtual ~SEInitializer_NssImpl();
+ virtual ~SEInitializer_NssImpl() override;
/* XSEInitializer */
virtual css::uno::Reference< css::xml::crypto::XXMLSecurityContext >
diff --git a/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx
index 038abe507182..12f23aafad5a 100644
--- a/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx
+++ b/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx
@@ -41,7 +41,7 @@ class X509Certificate_NssImpl : public ::cppu::WeakImplHelper<
public:
X509Certificate_NssImpl() ;
- virtual ~X509Certificate_NssImpl() ;
+ virtual ~X509Certificate_NssImpl() override ;
//Methods from XCertificate
virtual sal_Int16 SAL_CALL getVersion( ) throw ( css::uno::RuntimeException, std::exception) override ;
diff --git a/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx
index 8670ba316fe2..e96b55310421 100644
--- a/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx
+++ b/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx
@@ -40,7 +40,7 @@ class XMLEncryption_NssImpl : public ::cppu::WeakImplHelper<
{
public:
explicit XMLEncryption_NssImpl();
- virtual ~XMLEncryption_NssImpl() ;
+ virtual ~XMLEncryption_NssImpl() override ;
//Methods from XXMLEncryption
virtual css::uno::Reference< css::xml::crypto::XXMLEncryptionTemplate > SAL_CALL encrypt(
diff --git a/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx
index 1ca0e58b6cc9..d01d93580ceb 100644
--- a/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx
+++ b/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx
@@ -47,7 +47,7 @@ class XMLSecurityContext_NssImpl : public ::cppu::WeakImplHelper<
public:
XMLSecurityContext_NssImpl() ;
- virtual ~XMLSecurityContext_NssImpl() ;
+ virtual ~XMLSecurityContext_NssImpl() override ;
//Methods from XXMLSecurityContext
virtual sal_Int32 SAL_CALL addSecurityEnvironment(
diff --git a/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx
index a8ffaf4836fd..2e44b2c5eafd 100644
--- a/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx
+++ b/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx
@@ -40,7 +40,7 @@ class XMLSignature_NssImpl : public ::cppu::WeakImplHelper<
{
public:
explicit XMLSignature_NssImpl();
- virtual ~XMLSignature_NssImpl() ;
+ virtual ~XMLSignature_NssImpl() override ;
//Methods from XXMLSignature
virtual css::uno::Reference< css::xml::crypto::XXMLSignatureTemplate > SAL_CALL generate(
diff --git a/xmlsecurity/source/xmlsec/serialnumberadapter.cxx b/xmlsecurity/source/xmlsec/serialnumberadapter.cxx
index 1772671c8ff2..0917f2717a4d 100644
--- a/xmlsecurity/source/xmlsec/serialnumberadapter.cxx
+++ b/xmlsecurity/source/xmlsec/serialnumberadapter.cxx
@@ -47,7 +47,7 @@ public:
Service& operator=(const Service&) = delete;
private:
- virtual ~Service() {}
+ virtual ~Service() override {}
virtual OUString SAL_CALL getImplementationName()
throw (css::uno::RuntimeException, std::exception) override
diff --git a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx
index 8be52ae51358..a48278b30703 100644
--- a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx
+++ b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx
@@ -123,7 +123,7 @@ private:
public:
XMLDocumentWrapper_XmlSecImpl();
- virtual ~XMLDocumentWrapper_XmlSecImpl();
+ virtual ~XMLDocumentWrapper_XmlSecImpl() override;
/* css::xml::wrapper::XXMLDocumentWrapper */
virtual css::uno::Reference< css::xml::wrapper::XXMLElementWrapper > SAL_CALL getCurrentElement( )
diff --git a/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx b/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx
index 1ed0d5ec5550..4883581397f7 100644
--- a/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx
+++ b/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx
@@ -54,7 +54,7 @@ private:
public:
explicit XMLElementWrapper_XmlSecImpl(const xmlNodePtr pNode);
- virtual ~XMLElementWrapper_XmlSecImpl() {};
+ virtual ~XMLElementWrapper_XmlSecImpl() override {};
/* XXMLElementWrapper */