summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-11-06 09:30:50 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-11-06 12:15:50 +0000
commit5e8e025d60d8c694dc305c045830c42803ef2af3 (patch)
treeb95466e51dcb7f42d9b5013904012279d27012c4 /filter
parenta114895f1fd232d25e6bc8cf149878bf7106b3bb (diff)
coverity#1338245 Uncaught exception
Change-Id: I9f3df5bed8b6dd6239a4747d86889faaa52bc4d2
Diffstat (limited to 'filter')
-rw-r--r--filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx2
-rw-r--r--filter/source/xmlfilteradaptor/XmlFilterAdaptor.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx b/filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx
index 211b7802b927..1a32c9804f66 100644
--- a/filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx
+++ b/filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx
@@ -65,7 +65,7 @@ using namespace ::com::sun::star::frame;
using namespace ::com::sun::star::task;
bool SAL_CALL XmlFilterAdaptor::importImpl( const Sequence< css::beans::PropertyValue >& aDescriptor )
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
OUString udConvertClass=msUserData[0];
OUString udImport =msUserData[2];
diff --git a/filter/source/xmlfilteradaptor/XmlFilterAdaptor.hxx b/filter/source/xmlfilteradaptor/XmlFilterAdaptor.hxx
index 422e9d5a0e99..8d5b402e63e7 100644
--- a/filter/source/xmlfilteradaptor/XmlFilterAdaptor.hxx
+++ b/filter/source/xmlfilteradaptor/XmlFilterAdaptor.hxx
@@ -65,7 +65,7 @@ protected:
throw (css::uno::RuntimeException);
bool SAL_CALL importImpl( const css::uno::Sequence< css::beans::PropertyValue >& aDescriptor )
- throw (css::uno::RuntimeException);
+ throw (css::uno::RuntimeException, std::exception);