diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 12:35:00 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 14:42:18 +0100 |
commit | 416913139a54caf695e45ebbe26b8e0dcb75cd32 (patch) | |
tree | dba43f5b7d0e78ad74776666328e131ca5fbf928 /xmloff | |
parent | 8bf1d2c7cfe744ca923139d880c1330f35a833c1 (diff) |
coverity#1308433 Uncaught exception
Change-Id: I32750eebbcd5a54d3767d77f4f4b8c54c0888078
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/forms/elementexport.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/forms/elementexport.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/forms/elementexport.cxx b/xmloff/source/forms/elementexport.cxx index 322374c6abe3..374d2ba7dbe2 100644 --- a/xmloff/source/forms/elementexport.cxx +++ b/xmloff/source/forms/elementexport.cxx @@ -314,7 +314,7 @@ namespace xmloff exportOuterAttributes(); } - void OControlExport::exportSubTags() throw (Exception) + void OControlExport::exportSubTags() throw (Exception, std::exception) { // for the upcoming exportRemainingProperties: // if a control has the LabelControl property, this is not stored with the control itself, but instead with diff --git a/xmloff/source/forms/elementexport.hxx b/xmloff/source/forms/elementexport.hxx index 07ddce124d4f..c6203052fef2 100644 --- a/xmloff/source/forms/elementexport.hxx +++ b/xmloff/source/forms/elementexport.hxx @@ -149,7 +149,7 @@ namespace xmloff /** writes everything which needs to be represented as sub tag */ - void exportSubTags() throw (::com::sun::star::uno::Exception) SAL_OVERRIDE; + void exportSubTags() throw (css::uno::Exception, std::exception) SAL_OVERRIDE; /** adds the attributes which are handled via generic IPropertyHandlers |