summaryrefslogtreecommitdiff
path: root/chart2/source/view/main/VPolarTransformation.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/view/main/VPolarTransformation.cxx')
-rw-r--r--chart2/source/view/main/VPolarTransformation.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/view/main/VPolarTransformation.cxx b/chart2/source/view/main/VPolarTransformation.cxx
index 856509c2c878..e75e2a13b19d 100644
--- a/chart2/source/view/main/VPolarTransformation.cxx
+++ b/chart2/source/view/main/VPolarTransformation.cxx
@@ -44,7 +44,7 @@ VPolarTransformation::~VPolarTransformation()
Sequence< double > SAL_CALL VPolarTransformation::transform(
const Sequence< double >& rSourceValues )
throw (RuntimeException,
- lang::IllegalArgumentException)
+ lang::IllegalArgumentException, std::exception)
{
double fScaledLogicAngle = rSourceValues[0];
double fScaledLogicRadius = rSourceValues[1];
@@ -67,13 +67,13 @@ Sequence< double > SAL_CALL VPolarTransformation::transform(
}
sal_Int32 SAL_CALL VPolarTransformation::getSourceDimension()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return 3;
}
sal_Int32 SAL_CALL VPolarTransformation::getTargetDimension()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return 3;
}