summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/framework
diff options
context:
space:
mode:
Diffstat (limited to 'xmlsecurity/source/framework')
-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
11 files changed, 11 insertions, 11 deletions
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(