summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-11-06 09:42:22 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-11-06 12:15:56 +0000
commite460c11f42ec3405130463328944713094171ffc (patch)
tree37c64341551469db1d8afc68edcfda43ceb7f9c7 /chart2
parent77a03426517ae5e39ad32a4e62c90b630dde1b27 (diff)
coverity#1338253 Uncaught exception
Change-Id: Ia4235060dc2e8943a91e9115111bac9fe9a3fc66
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/view/axes/VCoordinateSystem.cxx2
-rw-r--r--chart2/source/view/inc/VCoordinateSystem.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/view/axes/VCoordinateSystem.cxx b/chart2/source/view/axes/VCoordinateSystem.cxx
index 3388f6d7518c..dd895c0cf5cc 100644
--- a/chart2/source/view/axes/VCoordinateSystem.cxx
+++ b/chart2/source/view/axes/VCoordinateSystem.cxx
@@ -97,7 +97,7 @@ void VCoordinateSystem::initPlottingTargets( const Reference< drawing::XShapes
, const Reference< drawing::XShapes >& xFinalTarget
, const Reference< lang::XMultiServiceFactory >& xShapeFactory
, Reference< drawing::XShapes >& xLogicTargetForSeriesBehindAxis )
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
OSL_PRECOND(xLogicTarget.is()&&xFinalTarget.is()&&xShapeFactory.is(),"no proper initialization parameters");
//is only allowed to be called once
diff --git a/chart2/source/view/inc/VCoordinateSystem.hxx b/chart2/source/view/inc/VCoordinateSystem.hxx
index 8fdefd8541f3..10890b9951e2 100644
--- a/chart2/source/view/inc/VCoordinateSystem.hxx
+++ b/chart2/source/view/inc/VCoordinateSystem.hxx
@@ -59,7 +59,7 @@ public:
::com::sun::star::lang::XMultiServiceFactory >& xFactory
, ::com::sun::star::uno::Reference<
::com::sun::star::drawing::XShapes >& xLogicTargetForSeriesBehindAxis )
- throw (::com::sun::star::uno::RuntimeException);
+ throw (css::uno::RuntimeException, std::exception);
void setParticle( const OUString& rCooSysParticle );