summaryrefslogtreecommitdiffstats
path: root/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx')
-rw-r--r--ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx24
1 files changed, 6 insertions, 18 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx b/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx
index 3e497f9a243b..439f60df4b34 100644
--- a/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx
+++ b/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx
@@ -44,28 +44,22 @@ namespace tdoc_ucp
: InteractionContinuation( pRequest ) {}
// XInterface
- virtual uno::Any SAL_CALL queryInterface( const uno::Type & rType )
- throw ( uno::RuntimeException, std::exception ) override;
+ virtual uno::Any SAL_CALL queryInterface( const uno::Type & rType ) override;
virtual void SAL_CALL acquire()
throw () override;
virtual void SAL_CALL release()
throw () override;
// XTypeProvider
- virtual uno::Sequence< uno::Type > SAL_CALL getTypes()
- throw ( uno::RuntimeException, std::exception ) override;
- virtual uno::Sequence< sal_Int8 > SAL_CALL getImplementationId()
- throw ( uno::RuntimeException, std::exception ) override;
+ virtual uno::Sequence< uno::Type > SAL_CALL getTypes() override;
+ virtual uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override;
// XInteractionContinuation
- virtual void SAL_CALL select()
- throw ( uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL select() override;
// XInteractionPassword
- virtual void SAL_CALL setPassword( const OUString & aPasswd )
- throw ( uno::RuntimeException, std::exception ) override;
- virtual OUString SAL_CALL getPassword()
- throw ( uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL setPassword( const OUString & aPasswd ) override;
+ virtual OUString SAL_CALL getPassword() override;
private:
osl::Mutex m_aMutex;
@@ -99,7 +93,6 @@ void SAL_CALL InteractionSupplyPassword::release()
// virtual
uno::Any SAL_CALL
InteractionSupplyPassword::queryInterface( const uno::Type & rType )
- throw ( uno::RuntimeException, std::exception )
{
uno::Any aRet = cppu::queryInterface( rType,
static_cast< lang::XTypeProvider * >( this ),
@@ -117,7 +110,6 @@ InteractionSupplyPassword::queryInterface( const uno::Type & rType )
// virtual
uno::Sequence< sal_Int8 > SAL_CALL
InteractionSupplyPassword::getImplementationId()
- throw( uno::RuntimeException, std::exception )
{
return css::uno::Sequence<sal_Int8>();
}
@@ -125,7 +117,6 @@ InteractionSupplyPassword::getImplementationId()
// virtual
uno::Sequence< uno::Type > SAL_CALL InteractionSupplyPassword::getTypes()
- throw( uno::RuntimeException, std::exception )
{
static cppu::OTypeCollection * pCollection = nullptr;
if ( !pCollection )
@@ -148,7 +139,6 @@ uno::Sequence< uno::Type > SAL_CALL InteractionSupplyPassword::getTypes()
// virtual
void SAL_CALL InteractionSupplyPassword::select()
- throw( uno::RuntimeException, std::exception )
{
recordSelection();
}
@@ -160,7 +150,6 @@ void SAL_CALL InteractionSupplyPassword::select()
// virtual
void SAL_CALL
InteractionSupplyPassword::setPassword( const OUString& aPasswd )
- throw ( uno::RuntimeException, std::exception )
{
osl::MutexGuard aGuard( m_aMutex );
m_aPassword = aPasswd;
@@ -168,7 +157,6 @@ InteractionSupplyPassword::setPassword( const OUString& aPasswd )
// virtual
OUString SAL_CALL InteractionSupplyPassword::getPassword()
- throw ( uno::RuntimeException, std::exception )
{
osl::MutexGuard aGuard( m_aMutex );
return m_aPassword;