diff options
author | Noel Grandin <noel@peralex.com> | 2014-05-27 12:30:40 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-05-28 10:00:54 +0200 |
commit | 461092aea109e798d349e7f2bb3e7665582b8e18 (patch) | |
tree | 75499332a47ecc3dc3fb7dd96ad2ba1ac6a1f44f /sc | |
parent | e8f8daa60d360b33b22ef432dae9c01d22672cfd (diff) |
cid#706943 Uncaught exception
Change-Id: I0a63e63318f1fa51878dff5dee8154aa34992f7e
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/vba/vbachart.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/vba/vbachart.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/vba/vbachart.cxx b/sc/source/ui/vba/vbachart.cxx index b659d6408c43..811768a374fd 100644 --- a/sc/source/ui/vba/vbachart.cxx +++ b/sc/source/ui/vba/vbachart.cxx @@ -1020,7 +1020,7 @@ ScVbaChart::assignDiagramAttributes() uno::Reference< beans::XPropertySet > -ScVbaChart::getAxisPropertySet(sal_Int32 _nAxisType, sal_Int32 _nAxisGroup) throw ( script::BasicErrorException ) +ScVbaChart::getAxisPropertySet(sal_Int32 _nAxisType, sal_Int32 _nAxisGroup) throw ( script::BasicErrorException, uno::RuntimeException ) { assignDiagramAttributes(); uno::Reference< beans::XPropertySet > xAxisProps; diff --git a/sc/source/ui/vba/vbachart.hxx b/sc/source/ui/vba/vbachart.hxx index a639dcbd0677..62cd53c85546 100644 --- a/sc/source/ui/vba/vbachart.hxx +++ b/sc/source/ui/vba/vbachart.hxx @@ -68,7 +68,7 @@ public: // Non-interface css::uno::Reference< css::beans::XPropertySet > xDiagramPropertySet() const { return mxDiagramPropertySet; } bool is3D() throw ( css::uno::RuntimeException ); - css::uno::Reference< css::beans::XPropertySet > getAxisPropertySet(sal_Int32 _nAxisType, sal_Int32 _nAxisGroup) throw ( css::script::BasicErrorException ); + css::uno::Reference< css::beans::XPropertySet > getAxisPropertySet(sal_Int32 _nAxisType, sal_Int32 _nAxisGroup) throw ( css::script::BasicErrorException, css::uno::RuntimeException ); // Methods virtual OUString SAL_CALL getName() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual css::uno::Any SAL_CALL SeriesCollection(const css::uno::Any&) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; |