summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/comphelper/propmultiplex.hxx3
-rw-r--r--reportdesign/source/ui/inc/SectionWindow.hxx3
-rw-r--r--reportdesign/source/ui/report/SectionWindow.cxx3
3 files changed, 6 insertions, 3 deletions
diff --git a/include/comphelper/propmultiplex.hxx b/include/comphelper/propmultiplex.hxx
index a543ac634ec5..7fa87320fcff 100644
--- a/include/comphelper/propmultiplex.hxx
+++ b/include/comphelper/propmultiplex.hxx
@@ -51,7 +51,8 @@ namespace comphelper
: m_pAdapter(NULL), m_rMutex(_rMutex) { }
virtual ~OPropertyChangeListener();
- virtual void _propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& _rEvent) throw( ::com::sun::star::uno::RuntimeException) = 0;
+ virtual void _propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& _rEvent)
+ throw (css::uno::RuntimeException, std::exception) = 0;
virtual void _disposing(const ::com::sun::star::lang::EventObject& _rSource)
throw( ::com::sun::star::uno::RuntimeException, std::exception);
diff --git a/reportdesign/source/ui/inc/SectionWindow.hxx b/reportdesign/source/ui/inc/SectionWindow.hxx
index 14f1a6bf72d4..0fd8c2cb44b0 100644
--- a/reportdesign/source/ui/inc/SectionWindow.hxx
+++ b/reportdesign/source/ui/inc/SectionWindow.hxx
@@ -91,7 +91,8 @@ namespace rptui
virtual void Resize() SAL_OVERRIDE;
protected:
- virtual void _propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& _rEvent) throw( ::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
+ virtual void _propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& _rEvent)
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
public:
OSectionWindow( OViewsWindow* _pParent
,const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection
diff --git a/reportdesign/source/ui/report/SectionWindow.cxx b/reportdesign/source/ui/report/SectionWindow.cxx
index c0b6c53ce9c8..2fd6bdd88b34 100644
--- a/reportdesign/source/ui/report/SectionWindow.cxx
+++ b/reportdesign/source/ui/report/SectionWindow.cxx
@@ -112,7 +112,8 @@ OSectionWindow::~OSectionWindow()
}
}
-void OSectionWindow::_propertyChanged(const beans::PropertyChangeEvent& _rEvent) throw( uno::RuntimeException)
+void OSectionWindow::_propertyChanged(const beans::PropertyChangeEvent& _rEvent)
+ throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard g;
const uno::Reference< report::XSection > xSection(_rEvent.Source,uno::UNO_QUERY);