diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-08 20:48:27 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-08 20:48:27 +0000 |
commit | 6d43fd9c9ff5a55bc8c7be5750dae4dc8ec363bb (patch) | |
tree | 89fb15bbfb04d900ea3f2713dd709f32407e0b67 /chart2 | |
parent | d67bc9b3e6a30748c78e541ac882c2dd426b003d (diff) |
coverity#737047 Uncaught exception
Change-Id: Icdb50f632654f0e46c41fa3e98741a00dfbc0feb
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/inc/ChartView.hxx | 2 | ||||
-rw-r--r-- | chart2/source/view/main/ChartView.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
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(); |