summaryrefslogtreecommitdiff
path: root/framework/source/xml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/xml')
-rw-r--r--framework/source/xml/acceleratorconfigurationreader.cxx16
-rw-r--r--framework/source/xml/imagesdocumenthandler.cxx12
2 files changed, 14 insertions, 14 deletions
diff --git a/framework/source/xml/acceleratorconfigurationreader.cxx b/framework/source/xml/acceleratorconfigurationreader.cxx
index 342bb280e3df..54e87ea7d8c6 100644
--- a/framework/source/xml/acceleratorconfigurationreader.cxx
+++ b/framework/source/xml/acceleratorconfigurationreader.cxx
@@ -73,14 +73,14 @@ AcceleratorConfigurationReader::~AcceleratorConfigurationReader()
void SAL_CALL AcceleratorConfigurationReader::startDocument()
throw(css::xml::sax::SAXException,
- css::uno::RuntimeException )
+ css::uno::RuntimeException, std::exception )
{
}
void SAL_CALL AcceleratorConfigurationReader::endDocument()
throw(css::xml::sax::SAXException,
- css::uno::RuntimeException )
+ css::uno::RuntimeException, std::exception )
{
// The xml file seems to be corrupted.
// Because we found no end-tags ... at least for
@@ -98,7 +98,7 @@ void SAL_CALL AcceleratorConfigurationReader::endDocument()
void SAL_CALL AcceleratorConfigurationReader::startElement(const OUString& sElement ,
const css::uno::Reference< css::xml::sax::XAttributeList >& xAttributeList)
throw(css::xml::sax::SAXException,
- css::uno::RuntimeException )
+ css::uno::RuntimeException, std::exception )
{
EXMLElement eElement = AcceleratorConfigurationReader::implst_classifyElement(sElement);
@@ -189,7 +189,7 @@ void SAL_CALL AcceleratorConfigurationReader::startElement(const OUString&
void SAL_CALL AcceleratorConfigurationReader::endElement(const OUString& sElement)
throw(css::xml::sax::SAXException,
- css::uno::RuntimeException )
+ css::uno::RuntimeException, std::exception )
{
EXMLElement eElement = AcceleratorConfigurationReader::implst_classifyElement(sElement);
@@ -213,14 +213,14 @@ void SAL_CALL AcceleratorConfigurationReader::endElement(const OUString& sElemen
void SAL_CALL AcceleratorConfigurationReader::characters(const OUString&)
throw(css::xml::sax::SAXException,
- css::uno::RuntimeException )
+ css::uno::RuntimeException, std::exception )
{
}
void SAL_CALL AcceleratorConfigurationReader::ignorableWhitespace(const OUString&)
throw(css::xml::sax::SAXException,
- css::uno::RuntimeException )
+ css::uno::RuntimeException, std::exception )
{
}
@@ -228,14 +228,14 @@ void SAL_CALL AcceleratorConfigurationReader::ignorableWhitespace(const OUString
void SAL_CALL AcceleratorConfigurationReader::processingInstruction(const OUString& /*sTarget*/,
const OUString& /*sData*/ )
throw(css::xml::sax::SAXException,
- css::uno::RuntimeException )
+ css::uno::RuntimeException, std::exception )
{
}
void SAL_CALL AcceleratorConfigurationReader::setDocumentLocator(const css::uno::Reference< css::xml::sax::XLocator >& xLocator)
throw(css::xml::sax::SAXException,
- css::uno::RuntimeException )
+ css::uno::RuntimeException, std::exception )
{
m_xLocator = xLocator;
}
diff --git a/framework/source/xml/imagesdocumenthandler.cxx b/framework/source/xml/imagesdocumenthandler.cxx
index 131e214c8513..84af2e1b0baf 100644
--- a/framework/source/xml/imagesdocumenthandler.cxx
+++ b/framework/source/xml/imagesdocumenthandler.cxx
@@ -145,12 +145,12 @@ OReadImagesDocumentHandler::~OReadImagesDocumentHandler()
// XDocumentHandler
void SAL_CALL OReadImagesDocumentHandler::startDocument(void)
-throw ( SAXException, RuntimeException )
+throw ( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadImagesDocumentHandler::endDocument(void)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
ResetableGuard aGuard( m_aLock );
@@ -560,24 +560,24 @@ void SAL_CALL OReadImagesDocumentHandler::endElement(const OUString& aName)
}
void SAL_CALL OReadImagesDocumentHandler::characters(const OUString&)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadImagesDocumentHandler::ignorableWhitespace(const OUString&)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadImagesDocumentHandler::processingInstruction(
const OUString& /*aTarget*/, const OUString& /*aData*/ )
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadImagesDocumentHandler::setDocumentLocator(
const Reference< XLocator > &xLocator)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
ResetableGuard aGuard( m_aLock );