summaryrefslogtreecommitdiff
path: root/formula/source/core/api/FormulaOpCodeMapperObj.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'formula/source/core/api/FormulaOpCodeMapperObj.cxx')
-rw-r--r--formula/source/core/api/FormulaOpCodeMapperObj.cxx12
1 files changed, 3 insertions, 9 deletions
diff --git a/formula/source/core/api/FormulaOpCodeMapperObj.cxx b/formula/source/core/api/FormulaOpCodeMapperObj.cxx
index c034b640300e..24395386d0cf 100644
--- a/formula/source/core/api/FormulaOpCodeMapperObj.cxx
+++ b/formula/source/core/api/FormulaOpCodeMapperObj.cxx
@@ -32,7 +32,7 @@ namespace formula
{
using namespace ::com::sun::star;
-sal_Bool SAL_CALL FormulaOpCodeMapperObj::supportsService( const OUString& _rServiceName ) throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL FormulaOpCodeMapperObj::supportsService( const OUString& _rServiceName )
{
return cppu::supportsService(this, _rServiceName);
}
@@ -47,14 +47,12 @@ FormulaOpCodeMapperObj::~FormulaOpCodeMapperObj()
}
::sal_Int32 SAL_CALL FormulaOpCodeMapperObj::getOpCodeExternal()
- throw (css::uno::RuntimeException, std::exception)
{
return ocExternal;
}
::sal_Int32 SAL_CALL FormulaOpCodeMapperObj::getOpCodeUnknown()
- throw (css::uno::RuntimeException, std::exception)
{
return FormulaCompiler::OpCodeMap::getOpCodeUnknown();
}
@@ -64,8 +62,6 @@ css::uno::Sequence< css::sheet::FormulaToken >
SAL_CALL FormulaOpCodeMapperObj::getMappings(
const css::uno::Sequence< OUString >& rNames,
sal_Int32 nLanguage )
- throw ( css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception)
{
FormulaCompiler::OpCodeMapPtr xMap = m_pCompiler->GetOpCodeMap( nLanguage);
if (!xMap)
@@ -77,8 +73,6 @@ SAL_CALL FormulaOpCodeMapperObj::getMappings(
css::uno::Sequence< css::sheet::FormulaOpCodeMapEntry >
SAL_CALL FormulaOpCodeMapperObj::getAvailableMappings(
sal_Int32 nLanguage, sal_Int32 nGroups )
- throw ( css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception)
{
FormulaCompiler::OpCodeMapPtr xMap = m_pCompiler->GetOpCodeMap( nLanguage);
if (!xMap)
@@ -86,7 +80,7 @@ SAL_CALL FormulaOpCodeMapperObj::getAvailableMappings(
return xMap->createSequenceOfAvailableMappings( *m_pCompiler,nGroups);
}
-OUString SAL_CALL FormulaOpCodeMapperObj::getImplementationName( ) throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL FormulaOpCodeMapperObj::getImplementationName( )
{
return getImplementationName_Static();
}
@@ -96,7 +90,7 @@ OUString SAL_CALL FormulaOpCodeMapperObj::getImplementationName_Static()
return OUString( "simple.formula.FormulaOpCodeMapperObj" );
}
-uno::Sequence< OUString > SAL_CALL FormulaOpCodeMapperObj::getSupportedServiceNames( ) throw(uno::RuntimeException, std::exception)
+uno::Sequence< OUString > SAL_CALL FormulaOpCodeMapperObj::getSupportedServiceNames( )
{
return getSupportedServiceNames_Static();
}