From 6d43fd9c9ff5a55bc8c7be5750dae4dc8ec363bb Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 8 Feb 2014 20:48:27 +0000 Subject: coverity#737047 Uncaught exception Change-Id: Icdb50f632654f0e46c41fa3e98741a00dfbc0feb --- chart2/inc/ChartView.hxx | 2 +- chart2/source/view/main/ChartView.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'chart2') diff --git a/chart2/inc/ChartView.hxx b/chart2/inc/ChartView.hxx index f44d952a46ab..702bebf1699a 100644 --- a/chart2/inc/ChartView.hxx +++ b/chart2/inc/ChartView.hxx @@ -165,7 +165,7 @@ public: virtual void SAL_CALL removeModeChangeApproveListener( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XModeChangeApproveListener >& _rxListener ) throw (::com::sun::star::lang::NoSupportException, ::com::sun::star::uno::RuntimeException); // ::com::sun::star::util::XUpdatable - virtual void SAL_CALL update() throw (::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL update() throw (::com::sun::star::uno::RuntimeException, std::exception); // ::com::sun::star::beans::XPropertySet virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw (::com::sun::star::uno::RuntimeException); diff --git a/chart2/source/view/main/ChartView.cxx b/chart2/source/view/main/ChartView.cxx index 3bdf76207133..c972af0bd04d 100644 --- a/chart2/source/view/main/ChartView.cxx +++ b/chart2/source/view/main/ChartView.cxx @@ -2817,7 +2817,7 @@ void SAL_CALL ChartView::removeModeChangeApproveListener( const uno::Reference< } // ____ XUpdatable ____ -void SAL_CALL ChartView::update() throw (uno::RuntimeException) +void SAL_CALL ChartView::update() throw (uno::RuntimeException, std::exception) { impl_updateView(); -- cgit