diff options
-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 |