summaryrefslogtreecommitdiff
path: root/filter/source/pdf/pdfinteract.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/pdf/pdfinteract.cxx')
-rw-r--r--filter/source/pdf/pdfinteract.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/filter/source/pdf/pdfinteract.cxx b/filter/source/pdf/pdfinteract.cxx
index 13b3cd50d46e..5f16d50323e1 100644
--- a/filter/source/pdf/pdfinteract.cxx
+++ b/filter/source/pdf/pdfinteract.cxx
@@ -35,13 +35,13 @@ PDFInteractionHandler::~PDFInteractionHandler()
}
void SAL_CALL PDFInteractionHandler::handle( const Reference< task::XInteractionRequest >& i_xRequest )
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
handleInteractionRequest( i_xRequest );
}
sal_Bool SAL_CALL PDFInteractionHandler::handleInteractionRequest( const Reference< task::XInteractionRequest >& i_xRequest )
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
sal_Bool bHandled = sal_False;
@@ -80,18 +80,18 @@ Reference< XInterface > SAL_CALL PDFInteractionHandler_createInstance( const Ref
}
OUString SAL_CALL PDFInteractionHandler::getImplementationName()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return PDFInteractionHandler_getImplementationName();
}
sal_Bool SAL_CALL PDFInteractionHandler::supportsService( const OUString& rServiceName )
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return cppu::supportsService( this, rServiceName );
}
-::com::sun::star::uno::Sequence< OUString > SAL_CALL PDFInteractionHandler::getSupportedServiceNames( ) throw (RuntimeException)
+::com::sun::star::uno::Sequence< OUString > SAL_CALL PDFInteractionHandler::getSupportedServiceNames( ) throw (RuntimeException, std::exception)
{
return PDFInteractionHandler_getSupportedServiceNames();
}