summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/framework
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-12 16:04:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-12 17:52:29 +0200
commitb36963c0a6a09f70ca6d8d607dd3249a3496497d (patch)
tree33e06dc8d227957cb31355277fb5cf20b9918628 /xmlsecurity/source/framework
parentb08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff)
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'xmlsecurity/source/framework')
-rw-r--r--xmlsecurity/source/framework/decryptorimpl.hxx18
-rw-r--r--xmlsecurity/source/framework/encryptionengine.hxx8
-rw-r--r--xmlsecurity/source/framework/encryptorimpl.hxx22
-rw-r--r--xmlsecurity/source/framework/saxeventkeeperimpl.hxx58
-rw-r--r--xmlsecurity/source/framework/securityengine.hxx6
-rw-r--r--xmlsecurity/source/framework/signaturecreatorimpl.hxx22
-rw-r--r--xmlsecurity/source/framework/signatureengine.hxx14
-rw-r--r--xmlsecurity/source/framework/signatureverifierimpl.hxx18
-rw-r--r--xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx18
-rw-r--r--xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx22
10 files changed, 103 insertions, 103 deletions
diff --git a/xmlsecurity/source/framework/decryptorimpl.hxx b/xmlsecurity/source/framework/decryptorimpl.hxx
index 8fc66b4d5086..4328256f0e26 100644
--- a/xmlsecurity/source/framework/decryptorimpl.hxx
+++ b/xmlsecurity/source/framework/decryptorimpl.hxx
@@ -57,12 +57,12 @@ private:
com::sun::star::xml::crypto::XXMLSecurityContext > m_xXMLSecurityContext;
virtual void notifyResultListener() const
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
- virtual bool checkReady() const SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) override;
+ virtual bool checkReady() const override;
virtual void startEngine( const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::XXMLEncryptionTemplate >&
xEncryptionTemplate)
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) override;
public:
explicit DecryptorImpl(const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > & xContext);
@@ -73,25 +73,25 @@ public:
const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::sax::XDecryptionResultListener >&
listener )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL removeDecryptionResultListener(
const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::sax::XDecryptionResultListener >&
listener )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
/* XInitialization */
virtual void SAL_CALL initialize(
const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& aArguments )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
/* XServiceInfo */
virtual OUString SAL_CALL getImplementationName( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
};
OUString DecryptorImpl_getImplementationName()
diff --git a/xmlsecurity/source/framework/encryptionengine.hxx b/xmlsecurity/source/framework/encryptionengine.hxx
index dc8e0b6a381a..01ea419aa83d 100644
--- a/xmlsecurity/source/framework/encryptionengine.hxx
+++ b/xmlsecurity/source/framework/encryptionengine.hxx
@@ -76,9 +76,9 @@ protected:
virtual ~EncryptionEngine(){};
virtual void tryToPerform( )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
- virtual void clearUp( ) const SAL_OVERRIDE;
- virtual bool checkReady() const SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) override;
+ virtual void clearUp( ) const override;
+ virtual bool checkReady() const override;
/*
* starts the main function. This method will be implemented by any sub-class.
@@ -93,7 +93,7 @@ protected:
public:
/* XBlockerMonitor */
virtual void SAL_CALL setBlockerId( sal_Int32 id )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
};
#endif
diff --git a/xmlsecurity/source/framework/encryptorimpl.hxx b/xmlsecurity/source/framework/encryptorimpl.hxx
index 5c28b20efefc..486a59cc3382 100644
--- a/xmlsecurity/source/framework/encryptorimpl.hxx
+++ b/xmlsecurity/source/framework/encryptorimpl.hxx
@@ -65,12 +65,12 @@ private:
com::sun::star::xml::crypto::XSecurityEnvironment > m_xSecurityEnvironment;
virtual void notifyResultListener() const
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
- virtual bool checkReady() const SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) override;
+ virtual bool checkReady() const override;
virtual void startEngine( const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::XXMLEncryptionTemplate >&
xEncryptionTemplate)
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) override;
public:
explicit EncryptorImpl(const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > & xContext);
@@ -81,32 +81,32 @@ public:
const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::sax::XEncryptionResultListener >&
listener )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL removeEncryptionResultListener(
const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::sax::XEncryptionResultListener >&
listener )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
/* XReferenceCollector */
virtual void SAL_CALL setReferenceCount( sal_Int32 count )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setReferenceId( sal_Int32 id )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
/* XInitialization */
virtual void SAL_CALL initialize(
const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& aArguments )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
/* XServiceInfo */
virtual OUString SAL_CALL getImplementationName( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
};
OUString EncryptorImpl_getImplementationName()
diff --git a/xmlsecurity/source/framework/saxeventkeeperimpl.hxx b/xmlsecurity/source/framework/saxeventkeeperimpl.hxx
index 31c2f11bf15a..3250abbf6ac9 100644
--- a/xmlsecurity/source/framework/saxeventkeeperimpl.hxx
+++ b/xmlsecurity/source/framework/saxeventkeeperimpl.hxx
@@ -228,48 +228,48 @@ public:
/* XSAXEventKeeper */
virtual sal_Int32 SAL_CALL addElementCollector( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL removeElementCollector( sal_Int32 id )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual sal_Int32 SAL_CALL addBlocker( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL removeBlocker( sal_Int32 id )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL isBlocking( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual com::sun::star::uno::Reference<
com::sun::star::xml::wrapper::XXMLElementWrapper > SAL_CALL
getElement( sal_Int32 id )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setElement(
sal_Int32 id,
const com::sun::star::uno::Reference<
com::sun::star::xml::wrapper::XXMLElementWrapper >&
aElement )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual com::sun::star::uno::Reference<
com::sun::star::xml::sax::XDocumentHandler > SAL_CALL
setNextHandler( const com::sun::star::uno::Reference<
com::sun::star::xml::sax::XDocumentHandler >& xNewHandler )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual OUString SAL_CALL printBufferNodeTree()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual com::sun::star::uno::Reference<
com::sun::star::xml::wrapper::XXMLElementWrapper > SAL_CALL
getCurrentBlockingNode()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
/* XSecuritySAXEventKeeper */
virtual sal_Int32 SAL_CALL addSecurityElementCollector(
com::sun::star::xml::crypto::sax::ElementMarkPriority priority,
sal_Bool modifyElement )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual sal_Int32 SAL_CALL cloneElementCollector(
sal_Int32 referenceId,
com::sun::star::xml::crypto::sax::ElementMarkPriority priority )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setSecurityId( sal_Int32 id, sal_Int32 securityId )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
/* XReferenceResolvedBroadcaster */
virtual void SAL_CALL addReferenceResolvedListener(
@@ -277,61 +277,61 @@ public:
const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::sax::XReferenceResolvedListener >&
listener )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL removeReferenceResolvedListener(
sal_Int32 referenceId,
const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::sax::XReferenceResolvedListener >&
listener )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
/* XSAXEventKeeperStatusChangeBroadcaster */
virtual void SAL_CALL addSAXEventKeeperStatusChangeListener(
const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::sax::XSAXEventKeeperStatusChangeListener >&
listener )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL removeSAXEventKeeperStatusChangeListener(
const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::sax::XSAXEventKeeperStatusChangeListener >&
listener )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
/* XDocumentHandler */
virtual void SAL_CALL startDocument( )
- throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL endDocument( )
- throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL startElement(
const OUString& aName,
const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList >&
xAttribs )
- throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL endElement( const OUString& aName )
- throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL characters( const OUString& aChars )
- throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL ignorableWhitespace( const OUString& aWhitespaces )
- throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL processingInstruction(
const OUString& aTarget, const OUString& aData )
- throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setDocumentLocator(
const com::sun::star::uno::Reference< com::sun::star::xml::sax::XLocator >& xLocator )
- throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException, std::exception) override;
/* XInitialization */
virtual void SAL_CALL initialize(
const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& aArguments )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
/* XServiceInfo */
virtual OUString SAL_CALL getImplementationName( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
};
OUString SAXEventKeeperImpl_getImplementationName()
diff --git a/xmlsecurity/source/framework/securityengine.hxx b/xmlsecurity/source/framework/securityengine.hxx
index 2279b72e8bff..e677c4964598 100644
--- a/xmlsecurity/source/framework/securityengine.hxx
+++ b/xmlsecurity/source/framework/securityengine.hxx
@@ -141,15 +141,15 @@ protected:
public:
/* XReferenceResolvedListener */
virtual void SAL_CALL referenceResolved( sal_Int32 referenceId )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
/* XKeyCollector */
virtual void SAL_CALL setKeyId( sal_Int32 id )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
/* XMissionTaker */
virtual sal_Bool SAL_CALL endMission( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
};
#endif
diff --git a/xmlsecurity/source/framework/signaturecreatorimpl.hxx b/xmlsecurity/source/framework/signaturecreatorimpl.hxx
index f14f330bdc45..4fd01d82a27c 100644
--- a/xmlsecurity/source/framework/signaturecreatorimpl.hxx
+++ b/xmlsecurity/source/framework/signaturecreatorimpl.hxx
@@ -65,13 +65,13 @@ private:
com::sun::star::xml::crypto::XSecurityEnvironment > m_xSecurityEnvironment;
virtual void notifyResultListener() const
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
- virtual void clearUp( ) const SAL_OVERRIDE;
- virtual bool checkReady() const SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) override;
+ virtual void clearUp( ) const override;
+ virtual bool checkReady() const override;
virtual void startEngine( const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::XXMLSignatureTemplate >&
xSignatureTemplate)
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) override;
public:
explicit SignatureCreatorImpl( const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > & xContext );
@@ -79,31 +79,31 @@ public:
/* XBlockerMonitor */
virtual void SAL_CALL setBlockerId( sal_Int32 id )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
/* XSignatureCreationResultBroadcaster */
void SAL_CALL addSignatureCreationResultListener(
const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::sax::XSignatureCreationResultListener >& listener )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
void SAL_CALL removeSignatureCreationResultListener(
const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::sax::XSignatureCreationResultListener >& listener )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
/* XInitialization */
virtual void SAL_CALL initialize(
const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& aArguments )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
/* XServiceInfo */
virtual OUString SAL_CALL getImplementationName( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
};
OUString SignatureCreatorImpl_getImplementationName()
diff --git a/xmlsecurity/source/framework/signatureengine.hxx b/xmlsecurity/source/framework/signatureengine.hxx
index d9625e73e014..1c9fd41d93e0 100644
--- a/xmlsecurity/source/framework/signatureengine.hxx
+++ b/xmlsecurity/source/framework/signatureengine.hxx
@@ -95,9 +95,9 @@ protected:
virtual ~SignatureEngine() {};
virtual void tryToPerform( )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
- virtual void clearUp( ) const SAL_OVERRIDE;
- virtual bool checkReady() const SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) override;
+ virtual void clearUp( ) const override;
+ virtual bool checkReady() const override;
/*
* starts the main function. This method will be implemented by any sub-class.
@@ -112,20 +112,20 @@ protected:
public:
/* XReferenceCollector */
virtual void SAL_CALL setReferenceCount( sal_Int32 count )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setReferenceId( sal_Int32 id )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
/* XUriBinding */
virtual void SAL_CALL setUriBinding(
const OUString& uri,
const com::sun::star::uno::Reference<
com::sun::star::io::XInputStream >& aInputStream )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
virtual com::sun::star::uno::Reference< com::sun::star::io::XInputStream >
SAL_CALL getUriBinding( const OUString& uri )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
};
#endif
diff --git a/xmlsecurity/source/framework/signatureverifierimpl.hxx b/xmlsecurity/source/framework/signatureverifierimpl.hxx
index 89e36a308c7e..2130e7c9c567 100644
--- a/xmlsecurity/source/framework/signatureverifierimpl.hxx
+++ b/xmlsecurity/source/framework/signatureverifierimpl.hxx
@@ -59,12 +59,12 @@ private:
com::sun::star::xml::crypto::XXMLSecurityContext > m_xXMLSecurityContext;
virtual void notifyResultListener() const
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
- virtual bool checkReady() const SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) override;
+ virtual bool checkReady() const override;
virtual void startEngine( const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::XXMLSignatureTemplate >&
xSignatureTemplate)
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException) override;
public:
explicit SignatureVerifierImpl( const com::sun::star::uno::Reference<
@@ -76,25 +76,25 @@ public:
const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::sax::XSignatureVerifyResultListener >&
listener )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL removeSignatureVerifyResultListener(
const com::sun::star::uno::Reference<
com::sun::star::xml::crypto::sax::XSignatureVerifyResultListener >&
listener )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
/* XInitialization */
virtual void SAL_CALL initialize(
const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& aArguments )
- throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception) override;
/* XServiceInfo */
virtual OUString SAL_CALL getImplementationName( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( )
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, std::exception) override;
};
OUString SignatureVerifierImpl_getImplementationName()
diff --git a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx
index 1103fbb2259e..c143506c88e4 100644
--- a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx
+++ b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx
@@ -52,33 +52,33 @@ class XMLEncryptionTemplateImpl : public ::cppu::WeakImplHelper<
virtual void SAL_CALL setTemplate(
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper >& aXmlElement
)
- throw (com::sun::star::uno::RuntimeException, com::sun::star::lang::IllegalArgumentException, std::exception) SAL_OVERRIDE;
+ throw (com::sun::star::uno::RuntimeException, com::sun::star::lang::IllegalArgumentException, std::exception) override;
virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > SAL_CALL getTemplate(
- ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ ) throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setTarget(
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper >& aXmlElement
- ) throw( com::sun::star::lang::IllegalArgumentException, std::exception) SAL_OVERRIDE;
+ ) throw( com::sun::star::lang::IllegalArgumentException, std::exception) override;
virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > SAL_CALL getTarget(
- ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE ;
+ ) throw (com::sun::star::uno::RuntimeException, std::exception) override ;
virtual void SAL_CALL setStatus(
::com::sun::star::xml::crypto::SecurityOperationStatus status )
- throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) override;
virtual ::com::sun::star::xml::crypto::SecurityOperationStatus
SAL_CALL getStatus( )
- throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (::com::sun::star::uno::RuntimeException, std::exception) override;
//Methods from XServiceInfo
- virtual OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE ;
+ virtual OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException, std::exception ) override ;
virtual sal_Bool SAL_CALL supportsService(
const OUString& ServiceName
- ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE ;
+ ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) override ;
- virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE ;
+ virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( ::com::sun::star::uno::RuntimeException, std::exception ) override ;
//Helper for XServiceInfo
static ::com::sun::star::uno::Sequence< OUString > impl_getSupportedServiceNames() ;
diff --git a/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx b/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx
index f34f3e657178..b8153dfe5366 100644
--- a/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx
+++ b/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx
@@ -53,42 +53,42 @@ class XMLSignatureTemplateImpl : public ::cppu::WeakImplHelper<
//Methods from XXMLSignatureTemplate
virtual void SAL_CALL setTemplate(
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper >& aXmlElement
- ) throw( com::sun::star::uno::RuntimeException, com::sun::star::lang::IllegalArgumentException, std::exception) SAL_OVERRIDE;
+ ) throw( com::sun::star::uno::RuntimeException, com::sun::star::lang::IllegalArgumentException, std::exception) override;
virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > SAL_CALL getTemplate(
- ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ ) throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setTarget(
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper >& aXmlElement
- ) throw( com::sun::star::uno::RuntimeException, com::sun::star::lang::IllegalArgumentException, std::exception) SAL_OVERRIDE;
+ ) throw( com::sun::star::uno::RuntimeException, com::sun::star::lang::IllegalArgumentException, std::exception) override;
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > > SAL_CALL getTargets(
- ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ ) throw (com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setBinding(
const ::com::sun::star::uno::Reference<
::com::sun::star::xml::crypto::XUriBinding >& aUriBinding )
- throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) override;
virtual ::com::sun::star::uno::Reference<
::com::sun::star::xml::crypto::XUriBinding >
SAL_CALL getBinding( )
- throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (::com::sun::star::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setStatus(
::com::sun::star::xml::crypto::SecurityOperationStatus status )
- throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) override;
virtual ::com::sun::star::xml::crypto::SecurityOperationStatus
SAL_CALL getStatus( )
- throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (::com::sun::star::uno::RuntimeException, std::exception) override;
//Methods from XServiceInfo
- virtual OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE ;
+ virtual OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException, std::exception ) override ;
virtual sal_Bool SAL_CALL supportsService(
const OUString& ServiceName
- ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE ;
+ ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) override ;
- virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE ;
+ virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( ::com::sun::star::uno::RuntimeException, std::exception ) override ;
//Helper for XServiceInfo
static ::com::sun::star::uno::Sequence< OUString > impl_getSupportedServiceNames() ;