summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/XMLCodeNameProvider.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/xml/XMLCodeNameProvider.cxx')
-rw-r--r--sc/source/filter/xml/XMLCodeNameProvider.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/sc/source/filter/xml/XMLCodeNameProvider.cxx b/sc/source/filter/xml/XMLCodeNameProvider.cxx
index db4c1ea25ec6..bb05210c22ab 100644
--- a/sc/source/filter/xml/XMLCodeNameProvider.cxx
+++ b/sc/source/filter/xml/XMLCodeNameProvider.cxx
@@ -59,7 +59,6 @@ XMLCodeNameProvider::~XMLCodeNameProvider()
}
sal_Bool SAL_CALL XMLCodeNameProvider::hasByName( const OUString& aName )
- throw (uno::RuntimeException, std::exception )
{
if( aName == msDocName )
return !mpDoc->GetCodeName().isEmpty();
@@ -79,8 +78,6 @@ sal_Bool SAL_CALL XMLCodeNameProvider::hasByName( const OUString& aName )
}
uno::Any SAL_CALL XMLCodeNameProvider::getByName( const OUString& aName )
- throw (container::NoSuchElementException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
uno::Any aRet;
uno::Sequence<beans::PropertyValue> aProps(1);
@@ -110,7 +107,6 @@ uno::Any SAL_CALL XMLCodeNameProvider::getByName( const OUString& aName )
}
uno::Sequence< OUString > SAL_CALL XMLCodeNameProvider::getElementNames( )
- throw (uno::RuntimeException, std::exception)
{
SCTAB nCount = mpDoc->GetTableCount() + 1;
std::vector< OUString > aNames;
@@ -134,13 +130,11 @@ uno::Sequence< OUString > SAL_CALL XMLCodeNameProvider::getElementNames( )
}
uno::Type SAL_CALL XMLCodeNameProvider::getElementType( )
- throw (uno::RuntimeException, std::exception)
{
return cppu::UnoType<uno::Sequence<beans::PropertyValue>>::get();
}
sal_Bool SAL_CALL XMLCodeNameProvider::hasElements()
- throw (uno::RuntimeException, std::exception )
{
if( !mpDoc->GetCodeName().isEmpty() )
return true;