summaryrefslogtreecommitdiff
path: root/chart2/source/tools/Scaling.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/tools/Scaling.cxx')
-rw-r--r--chart2/source/tools/Scaling.cxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/chart2/source/tools/Scaling.cxx b/chart2/source/tools/Scaling.cxx
index 83084b9126ae..9edd475afdcb 100644
--- a/chart2/source/tools/Scaling.cxx
+++ b/chart2/source/tools/Scaling.cxx
@@ -54,7 +54,6 @@ LogarithmicScaling::~LogarithmicScaling()
}
double SAL_CALL LogarithmicScaling::doScaling( double value )
- throw (uno::RuntimeException, std::exception)
{
double fResult;
if( ::rtl::math::isNan( value ) || ::rtl::math::isInf( value ) )
@@ -65,31 +64,26 @@ double SAL_CALL LogarithmicScaling::doScaling( double value )
}
uno::Reference< XScaling > SAL_CALL LogarithmicScaling::getInverseScaling()
- throw (uno::RuntimeException, std::exception)
{
return new ExponentialScaling( m_fBase );
}
OUString SAL_CALL LogarithmicScaling::getServiceName()
- throw (uno::RuntimeException, std::exception)
{
return OUString(lcl_aServiceName_Logarithmic);
}
OUString SAL_CALL LogarithmicScaling::getImplementationName()
- throw( css::uno::RuntimeException, std::exception )
{
return OUString(lcl_aServiceName_Logarithmic);
}
sal_Bool SAL_CALL LogarithmicScaling::supportsService( const OUString& rServiceName )
- throw( css::uno::RuntimeException, std::exception )
{
return cppu::supportsService(this, rServiceName);
}
css::uno::Sequence< OUString > SAL_CALL LogarithmicScaling::getSupportedServiceNames()
- throw( css::uno::RuntimeException, std::exception )
{
return { lcl_aServiceName_Logarithmic };
}
@@ -109,7 +103,6 @@ ExponentialScaling::~ExponentialScaling()
}
double SAL_CALL ExponentialScaling::doScaling( double value )
- throw (uno::RuntimeException, std::exception)
{
double fResult;
if( ::rtl::math::isNan( value ) || ::rtl::math::isInf( value ) )
@@ -120,31 +113,26 @@ double SAL_CALL ExponentialScaling::doScaling( double value )
}
uno::Reference< XScaling > SAL_CALL ExponentialScaling::getInverseScaling()
- throw (uno::RuntimeException, std::exception)
{
return new LogarithmicScaling( m_fBase );
}
OUString SAL_CALL ExponentialScaling::getServiceName()
- throw (uno::RuntimeException, std::exception)
{
return OUString(lcl_aServiceName_Exponential);
}
OUString SAL_CALL ExponentialScaling::getImplementationName()
- throw( css::uno::RuntimeException, std::exception )
{
return OUString(lcl_aServiceName_Exponential);
}
sal_Bool SAL_CALL ExponentialScaling::supportsService( const OUString& rServiceName )
- throw( css::uno::RuntimeException, std::exception )
{
return cppu::supportsService(this, rServiceName);
}
css::uno::Sequence< OUString > SAL_CALL ExponentialScaling::getSupportedServiceNames()
- throw( css::uno::RuntimeException, std::exception )
{
return { lcl_aServiceName_Exponential };
}
@@ -163,7 +151,6 @@ LinearScaling::~LinearScaling()
{}
double SAL_CALL LinearScaling::doScaling( double value )
- throw (uno::RuntimeException, std::exception)
{
double fResult;
if( ::rtl::math::isNan( value ) || ::rtl::math::isInf( value ) )
@@ -175,7 +162,6 @@ double SAL_CALL LinearScaling::doScaling( double value )
uno::Reference< XScaling > SAL_CALL
LinearScaling::getInverseScaling()
- throw (uno::RuntimeException, std::exception)
{
// ToDo: ApproxEqual ?
if( m_fSlope == 0 )
@@ -185,25 +171,21 @@ uno::Reference< XScaling > SAL_CALL
}
OUString SAL_CALL LinearScaling::getServiceName()
- throw (uno::RuntimeException, std::exception)
{
return OUString(lcl_aServiceName_Linear);
}
OUString SAL_CALL LinearScaling::getImplementationName()
- throw( css::uno::RuntimeException, std::exception )
{
return OUString(lcl_aServiceName_Linear) ;
}
sal_Bool SAL_CALL LinearScaling::supportsService( const OUString& rServiceName )
- throw( css::uno::RuntimeException, std::exception )
{
return cppu::supportsService(this, rServiceName);
}
css::uno::Sequence< OUString > SAL_CALL LinearScaling::getSupportedServiceNames()
- throw( css::uno::RuntimeException, std::exception )
{
return { lcl_aServiceName_Linear };
}
@@ -220,7 +202,6 @@ PowerScaling::~PowerScaling()
{}
double SAL_CALL PowerScaling::doScaling( double value )
- throw (uno::RuntimeException, std::exception)
{
double fResult;
if( ::rtl::math::isNan( value ) || ::rtl::math::isInf( value ) )
@@ -232,7 +213,6 @@ double SAL_CALL PowerScaling::doScaling( double value )
uno::Reference< XScaling > SAL_CALL
PowerScaling::getInverseScaling()
- throw (uno::RuntimeException, std::exception)
{
// ToDo: ApproxEqual ?
if( m_fExponent == 0 )
@@ -243,25 +223,21 @@ uno::Reference< XScaling > SAL_CALL
OUString SAL_CALL
PowerScaling::getServiceName()
- throw (uno::RuntimeException, std::exception)
{
return OUString(lcl_aServiceName_Power);
}
OUString SAL_CALL PowerScaling::getImplementationName()
- throw( css::uno::RuntimeException, std::exception )
{
return OUString(lcl_aServiceName_Power);
}
sal_Bool SAL_CALL PowerScaling::supportsService( const OUString& rServiceName )
- throw( css::uno::RuntimeException, std::exception )
{
return cppu::supportsService(this, rServiceName);
}
css::uno::Sequence< OUString > SAL_CALL PowerScaling::getSupportedServiceNames()
- throw( css::uno::RuntimeException, std::exception )
{
return { lcl_aServiceName_Power };
}