summaryrefslogtreecommitdiff
path: root/svx/source/unodraw/UnoNamespaceMap.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/unodraw/UnoNamespaceMap.cxx')
-rw-r--r--svx/source/unodraw/UnoNamespaceMap.cxx29
1 files changed, 13 insertions, 16 deletions
diff --git a/svx/source/unodraw/UnoNamespaceMap.cxx b/svx/source/unodraw/UnoNamespaceMap.cxx
index 548865e0d01a..5cbbe59fba18 100644
--- a/svx/source/unodraw/UnoNamespaceMap.cxx
+++ b/svx/source/unodraw/UnoNamespaceMap.cxx
@@ -57,18 +57,18 @@ namespace svx
NamespaceMap( sal_uInt16* pWhichIds, SfxItemPool* pPool );
// XNameAccess
- virtual Any SAL_CALL getByName( const OUString& aName ) throw (NoSuchElementException, WrappedTargetException, RuntimeException, std::exception) override;
- virtual Sequence< OUString > SAL_CALL getElementNames( ) throw (RuntimeException, std::exception) override;
- virtual sal_Bool SAL_CALL hasByName( const OUString& aName ) throw (RuntimeException, std::exception) override;
+ virtual Any SAL_CALL getByName( const OUString& aName ) override;
+ virtual Sequence< OUString > SAL_CALL getElementNames( ) override;
+ virtual sal_Bool SAL_CALL hasByName( const OUString& aName ) override;
// XElementAccess
- virtual Type SAL_CALL getElementType( ) throw (RuntimeException, std::exception) override;
- virtual sal_Bool SAL_CALL hasElements( ) throw (RuntimeException, std::exception) override;
+ virtual Type SAL_CALL getElementType( ) override;
+ virtual sal_Bool SAL_CALL hasElements( ) override;
// XServiceInfo
- virtual OUString SAL_CALL getImplementationName( ) throw(RuntimeException, std::exception) override;
- virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw(RuntimeException, std::exception) override;
- virtual Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getImplementationName( ) override;
+ virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
+ virtual Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
};
Reference< XInterface > SAL_CALL NamespaceMap_createInstance( sal_uInt16* pWhichIds, SfxItemPool* pPool )
@@ -186,7 +186,7 @@ NamespaceMap::NamespaceMap( sal_uInt16* pWhichIds, SfxItemPool* pPool )
}
// XNameAccess
-Any SAL_CALL NamespaceMap::getByName( const OUString& aName ) throw (NoSuchElementException, WrappedTargetException, RuntimeException, std::exception)
+Any SAL_CALL NamespaceMap::getByName( const OUString& aName )
{
NamespaceIteratorImpl aIter( mpWhichIds, mpPool );
@@ -207,7 +207,7 @@ Any SAL_CALL NamespaceMap::getByName( const OUString& aName ) throw (NoSuchEleme
return makeAny( aURL );
}
-Sequence< OUString > SAL_CALL NamespaceMap::getElementNames() throw (RuntimeException, std::exception)
+Sequence< OUString > SAL_CALL NamespaceMap::getElementNames()
{
NamespaceIteratorImpl aIter( mpWhichIds, mpPool );
@@ -222,7 +222,7 @@ Sequence< OUString > SAL_CALL NamespaceMap::getElementNames() throw (RuntimeExce
return comphelper::containerToSequence(aPrefixSet);
}
-sal_Bool SAL_CALL NamespaceMap::hasByName( const OUString& aName ) throw (RuntimeException, std::exception)
+sal_Bool SAL_CALL NamespaceMap::hasByName( const OUString& aName )
{
NamespaceIteratorImpl aIter( mpWhichIds, mpPool );
@@ -241,12 +241,12 @@ sal_Bool SAL_CALL NamespaceMap::hasByName( const OUString& aName ) throw (Runtim
}
// XElementAccess
-Type SAL_CALL NamespaceMap::getElementType() throw (RuntimeException, std::exception)
+Type SAL_CALL NamespaceMap::getElementType()
{
return ::cppu::UnoType<OUString>::get();
}
-sal_Bool SAL_CALL NamespaceMap::hasElements() throw (RuntimeException, std::exception)
+sal_Bool SAL_CALL NamespaceMap::hasElements()
{
NamespaceIteratorImpl aIter( mpWhichIds, mpPool );
@@ -258,19 +258,16 @@ sal_Bool SAL_CALL NamespaceMap::hasElements() throw (RuntimeException, std::exce
// XServiceInfo
OUString SAL_CALL NamespaceMap::getImplementationName( )
- throw(RuntimeException, std::exception)
{
return NamespaceMap_getImplementationName();
}
sal_Bool SAL_CALL NamespaceMap::supportsService( const OUString& serviceName )
- throw(RuntimeException, std::exception)
{
return cppu::supportsService( this, serviceName );
}
Sequence< OUString > SAL_CALL NamespaceMap::getSupportedServiceNames( )
- throw(RuntimeException, std::exception)
{
return NamespaceMap_getSupportedServiceNames();
}