summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox/ooxformulaparser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/oox/ooxformulaparser.cxx')
-rw-r--r--sc/source/filter/oox/ooxformulaparser.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/filter/oox/ooxformulaparser.cxx b/sc/source/filter/oox/ooxformulaparser.cxx
index 720c27707bc2..6491560d6d8f 100644
--- a/sc/source/filter/oox/ooxformulaparser.cxx
+++ b/sc/source/filter/oox/ooxformulaparser.cxx
@@ -108,17 +108,17 @@ OOXMLFormulaParser::~OOXMLFormulaParser()
}
// com.sun.star.lang.XServiceInfo interface -----------------------------------
-OUString SAL_CALL OOXMLFormulaParser::getImplementationName() throw( RuntimeException, std::exception )
+OUString SAL_CALL OOXMLFormulaParser::getImplementationName()
{
return OUString( "com.sun.star.comp.oox.xls.FormulaParser");
}
-sal_Bool SAL_CALL OOXMLFormulaParser::supportsService( const OUString& rService ) throw( RuntimeException, std::exception )
+sal_Bool SAL_CALL OOXMLFormulaParser::supportsService( const OUString& rService )
{
return cppu::supportsService(this, rService);
}
-Sequence< OUString > SAL_CALL OOXMLFormulaParser::getSupportedServiceNames() throw( RuntimeException, std::exception )
+Sequence< OUString > SAL_CALL OOXMLFormulaParser::getSupportedServiceNames()
{
Sequence< OUString > aServiceNames { "com.sun.star.sheet.FilterFormulaParser" };
return aServiceNames;
@@ -126,7 +126,7 @@ Sequence< OUString > SAL_CALL OOXMLFormulaParser::getSupportedServiceNames() thr
// com.sun.star.lang.XInitialization interface --------------------------------
-void SAL_CALL OOXMLFormulaParser::initialize( const Sequence< Any >& rArgs ) throw( Exception, RuntimeException, std::exception )
+void SAL_CALL OOXMLFormulaParser::initialize( const Sequence< Any >& rArgs )
{
OSL_ENSURE( rArgs.hasElements(), "OOXMLFormulaParser::initialize - missing arguments" );
if( !rArgs.hasElements() )
@@ -136,7 +136,7 @@ void SAL_CALL OOXMLFormulaParser::initialize( const Sequence< Any >& rArgs ) thr
// com.sun.star.sheet.XFilterFormulaParser interface --------------------------
-OUString SAL_CALL OOXMLFormulaParser::getSupportedNamespace() throw( RuntimeException, std::exception )
+OUString SAL_CALL OOXMLFormulaParser::getSupportedNamespace()
{
return OUString( "http://schemas.microsoft.com/office/excel/formula");
}
@@ -144,7 +144,7 @@ OUString SAL_CALL OOXMLFormulaParser::getSupportedNamespace() throw( RuntimeExce
// com.sun.star.sheet.XFormulaParser interface --------------------------------
Sequence< FormulaToken > SAL_CALL OOXMLFormulaParser::parseFormula(
- const OUString& rFormula, const CellAddress& rReferencePos ) throw( RuntimeException, std::exception )
+ const OUString& rFormula, const CellAddress& rReferencePos )
{
if( !mxParserImpl )
{
@@ -156,7 +156,7 @@ Sequence< FormulaToken > SAL_CALL OOXMLFormulaParser::parseFormula(
}
OUString SAL_CALL OOXMLFormulaParser::printFormula(
- const Sequence< FormulaToken >& /*rTokens*/, const CellAddress& /*rReferencePos*/ ) throw( RuntimeException, std::exception )
+ const Sequence< FormulaToken >& /*rTokens*/, const CellAddress& /*rReferencePos*/ )
{
// not implemented
throw RuntimeException();