summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/misc/pwdinteract.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/pdfimport/misc/pwdinteract.cxx')
-rw-r--r--sdext/source/pdfimport/misc/pwdinteract.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sdext/source/pdfimport/misc/pwdinteract.cxx b/sdext/source/pdfimport/misc/pwdinteract.cxx
index 0e0d58622da4..e0c27aa37cad 100644
--- a/sdext/source/pdfimport/misc/pwdinteract.cxx
+++ b/sdext/source/pdfimport/misc/pwdinteract.cxx
@@ -57,15 +57,15 @@ public:
explicit PDFPasswordRequest(bool bFirstTry, const OUString& rName);
// XInteractionRequest
- virtual uno::Any SAL_CALL getRequest( ) throw (uno::RuntimeException, std::exception);
- virtual uno::Sequence< uno::Reference< task::XInteractionContinuation > > SAL_CALL getContinuations( ) throw (uno::RuntimeException, std::exception);
+ virtual uno::Any SAL_CALL getRequest( ) throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual uno::Sequence< uno::Reference< task::XInteractionContinuation > > SAL_CALL getContinuations( ) throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XInteractionPassword
- virtual void SAL_CALL setPassword( const OUString& rPwd ) throw (uno::RuntimeException, std::exception);
- virtual OUString SAL_CALL getPassword() throw (uno::RuntimeException, std::exception);
+ virtual void SAL_CALL setPassword( const OUString& rPwd ) throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual OUString SAL_CALL getPassword() throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XInteractionContinuation
- virtual void SAL_CALL select() throw (uno::RuntimeException, std::exception);
+ virtual void SAL_CALL select() throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
bool isSelected() const { osl::MutexGuard const guard( m_aMutex ); return m_bSelected; }
@@ -129,7 +129,7 @@ public:
private:
virtual ~UnsupportedEncryptionFormatRequest() {}
- virtual uno::Any SAL_CALL getRequest() throw (uno::RuntimeException, std::exception) {
+ virtual uno::Any SAL_CALL getRequest() throw (uno::RuntimeException, std::exception) SAL_OVERRIDE {
return uno::makeAny(
task::ErrorCodeRequest(
OUString(), uno::Reference< uno::XInterface >(),
@@ -139,7 +139,7 @@ private:
}
virtual uno::Sequence< uno::Reference< task::XInteractionContinuation > >
- SAL_CALL getContinuations() throw (uno::RuntimeException, std::exception) {
+ SAL_CALL getContinuations() throw (uno::RuntimeException, std::exception) SAL_OVERRIDE {
return
uno::Sequence< uno::Reference< task::XInteractionContinuation > >();
}