summaryrefslogtreecommitdiff
path: root/chart2/source/view/axes/DateScaling.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/view/axes/DateScaling.cxx')
-rw-r--r--chart2/source/view/axes/DateScaling.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/chart2/source/view/axes/DateScaling.cxx b/chart2/source/view/axes/DateScaling.cxx
index 685a5690c48a..86eeea128c14 100644
--- a/chart2/source/view/axes/DateScaling.cxx
+++ b/chart2/source/view/axes/DateScaling.cxx
@@ -51,7 +51,7 @@ DateScaling::~DateScaling()
}
double SAL_CALL DateScaling::doScaling( double value )
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
double fResult(value);
if( ::rtl::math::isNan( value ) || ::rtl::math::isInf( value ) )
@@ -92,13 +92,13 @@ double SAL_CALL DateScaling::doScaling( double value )
}
uno::Reference< XScaling > SAL_CALL DateScaling::getInverseScaling()
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
return new InverseDateScaling( m_aNullDate, m_nTimeUnit, m_bShifted );
}
OUString SAL_CALL DateScaling::getServiceName()
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
return lcl_aServiceName_DateScaling;
}
@@ -123,7 +123,7 @@ InverseDateScaling::~InverseDateScaling()
}
double SAL_CALL InverseDateScaling::doScaling( double value )
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
double fResult(value);
if( ::rtl::math::isNan( value ) || ::rtl::math::isInf( value ) )
@@ -171,13 +171,13 @@ double SAL_CALL InverseDateScaling::doScaling( double value )
}
uno::Reference< XScaling > SAL_CALL InverseDateScaling::getInverseScaling()
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
return new DateScaling( m_aNullDate, m_nTimeUnit, m_bShifted );
}
OUString SAL_CALL InverseDateScaling::getServiceName()
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
return lcl_aServiceName_InverseDateScaling;
}