summaryrefslogtreecommitdiff
path: root/ucbhelper/source/provider/simplenameclashresolverequest.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucbhelper/source/provider/simplenameclashresolverequest.cxx')
-rw-r--r--ucbhelper/source/provider/simplenameclashresolverequest.cxx20
1 files changed, 5 insertions, 15 deletions
diff --git a/ucbhelper/source/provider/simplenameclashresolverequest.cxx b/ucbhelper/source/provider/simplenameclashresolverequest.cxx
index a9712a3425ae..912e559f989b 100644
--- a/ucbhelper/source/provider/simplenameclashresolverequest.cxx
+++ b/ucbhelper/source/provider/simplenameclashresolverequest.cxx
@@ -45,8 +45,7 @@ public:
// XInterface
virtual css::uno::Any SAL_CALL
- queryInterface( const css::uno::Type & rType )
- throw( css::uno::RuntimeException, std::exception ) override;
+ queryInterface( const css::uno::Type & rType ) override;
virtual void SAL_CALL acquire()
throw() override;
virtual void SAL_CALL release()
@@ -54,19 +53,15 @@ public:
// XTypeProvider
virtual css::uno::Sequence< css::uno::Type > SAL_CALL
- getTypes()
- throw( css::uno::RuntimeException, std::exception ) override;
+ getTypes() override;
virtual css::uno::Sequence< sal_Int8 > SAL_CALL
- getImplementationId()
- throw( css::uno::RuntimeException, std::exception ) override;
+ getImplementationId() override;
// XInteractionContinuation
- virtual void SAL_CALL select()
- throw( css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL select() override;
// XInteractionSupplyName
- virtual void SAL_CALL setName( const OUString& Name )
- throw ( css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL setName( const OUString& Name ) override;
// Non-interface methods.
@@ -93,7 +88,6 @@ void SAL_CALL InteractionSupplyName::release()
uno::Any SAL_CALL
InteractionSupplyName::queryInterface( const uno::Type & rType )
- throw ( uno::RuntimeException, std::exception )
{
uno::Any aRet = cppu::queryInterface( rType,
static_cast< lang::XTypeProvider * >( this ),
@@ -105,13 +99,11 @@ InteractionSupplyName::queryInterface( const uno::Type & rType )
}
uno::Sequence< sal_Int8 > SAL_CALL InteractionSupplyName::getImplementationId()
- throw( uno::RuntimeException, std::exception )
{
return css::uno::Sequence<sal_Int8>();
}
uno::Sequence< uno::Type > SAL_CALL InteractionSupplyName::getTypes()
- throw( uno::RuntimeException, std::exception )
{
static cppu::OTypeCollection* pCollection = nullptr;
if ( !pCollection )
@@ -129,14 +121,12 @@ uno::Sequence< uno::Type > SAL_CALL InteractionSupplyName::getTypes()
}
void SAL_CALL InteractionSupplyName::select()
- throw( uno::RuntimeException, std::exception )
{
recordSelection();
}
void SAL_CALL
InteractionSupplyName::setName( const OUString& Name )
- throw( uno::RuntimeException, std::exception )
{
m_aName = Name;
}