From 5e21a413c788f839a66d9e4c14e745ed18058db8 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 25 Feb 2014 21:31:58 +0100 Subject: cppuhelper: retrofit std::exception into overriding exception specs Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3 --- extensions/source/propctrlr/MasterDetailLinkDialog.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'extensions/source/propctrlr/MasterDetailLinkDialog.cxx') diff --git a/extensions/source/propctrlr/MasterDetailLinkDialog.cxx b/extensions/source/propctrlr/MasterDetailLinkDialog.cxx index dcbd50edca3e..88e36aea290c 100644 --- a/extensions/source/propctrlr/MasterDetailLinkDialog.cxx +++ b/extensions/source/propctrlr/MasterDetailLinkDialog.cxx @@ -43,7 +43,7 @@ namespace pcr { } - Sequence SAL_CALL MasterDetailLinkDialog::getImplementationId( ) throw(RuntimeException) + Sequence SAL_CALL MasterDetailLinkDialog::getImplementationId( ) throw(RuntimeException, std::exception) { static ::cppu::OImplementationId aId; return aId.getImplementationId(); @@ -56,7 +56,7 @@ namespace pcr } - OUString SAL_CALL MasterDetailLinkDialog::getImplementationName() throw(RuntimeException) + OUString SAL_CALL MasterDetailLinkDialog::getImplementationName() throw(RuntimeException, std::exception) { return getImplementationName_static(); } @@ -68,7 +68,7 @@ namespace pcr } - ::comphelper::StringSequence SAL_CALL MasterDetailLinkDialog::getSupportedServiceNames() throw(RuntimeException) + ::comphelper::StringSequence SAL_CALL MasterDetailLinkDialog::getSupportedServiceNames() throw(RuntimeException, std::exception) { return getSupportedServiceNames_static(); } @@ -82,7 +82,7 @@ namespace pcr } - Reference SAL_CALL MasterDetailLinkDialog::getPropertySetInfo() throw(RuntimeException) + Reference SAL_CALL MasterDetailLinkDialog::getPropertySetInfo() throw(RuntimeException, std::exception) { Reference xInfo( createPropertySetInfo( getInfoHelper() ) ); return xInfo; -- cgit