summaryrefslogtreecommitdiff
path: root/framework/source/fwe/xml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/fwe/xml')
-rw-r--r--framework/source/fwe/xml/menudocumenthandler.cxx46
-rw-r--r--framework/source/fwe/xml/saxnamespacefilter.cxx16
-rw-r--r--framework/source/fwe/xml/statusbardocumenthandler.cxx16
-rw-r--r--framework/source/fwe/xml/toolboxdocumenthandler.cxx16
4 files changed, 47 insertions, 47 deletions
diff --git a/framework/source/fwe/xml/menudocumenthandler.cxx b/framework/source/fwe/xml/menudocumenthandler.cxx
index 1be57a8b96ee..85479e99aaa3 100644
--- a/framework/source/fwe/xml/menudocumenthandler.cxx
+++ b/framework/source/fwe/xml/menudocumenthandler.cxx
@@ -172,19 +172,19 @@ ReadMenuDocumentHandlerBase::~ReadMenuDocumentHandlerBase()
void SAL_CALL ReadMenuDocumentHandlerBase::ignorableWhitespace(
const OUString& )
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL ReadMenuDocumentHandlerBase::processingInstruction(
const OUString& /*aTarget*/, const OUString& /*aData*/ )
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL ReadMenuDocumentHandlerBase::setDocumentLocator(
const Reference< XLocator > &xLocator)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
m_xLocator = xLocator;
}
@@ -239,13 +239,13 @@ OReadMenuDocumentHandler::~OReadMenuDocumentHandler()
void SAL_CALL OReadMenuDocumentHandler::startDocument(void)
- throw ( SAXException, RuntimeException )
+ throw ( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadMenuDocumentHandler::endDocument(void)
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
if ( m_nElementDepth > 0 )
{
@@ -258,7 +258,7 @@ void SAL_CALL OReadMenuDocumentHandler::endDocument(void)
void SAL_CALL OReadMenuDocumentHandler::startElement(
const OUString& aName, const Reference< XAttributeList > &xAttrList )
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
if ( m_bMenuBarMode )
{
@@ -277,13 +277,13 @@ throw( SAXException, RuntimeException )
void SAL_CALL OReadMenuDocumentHandler::characters(const OUString&)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadMenuDocumentHandler::endElement( const OUString& aName )
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
if ( m_bMenuBarMode )
{
@@ -324,20 +324,20 @@ OReadMenuBarHandler::~OReadMenuBarHandler()
void SAL_CALL OReadMenuBarHandler::startDocument(void)
- throw ( SAXException, RuntimeException )
+ throw ( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadMenuBarHandler::endDocument(void)
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadMenuBarHandler::startElement(
const OUString& rName, const Reference< XAttributeList > &xAttrList )
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
if ( m_bMenuMode )
{
@@ -426,13 +426,13 @@ throw( SAXException, RuntimeException )
void SAL_CALL OReadMenuBarHandler::characters(const OUString&)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void OReadMenuBarHandler::endElement( const OUString& aName )
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
if ( m_bMenuMode )
{
@@ -475,20 +475,20 @@ OReadMenuHandler::~OReadMenuHandler()
void SAL_CALL OReadMenuHandler::startDocument(void)
- throw ( SAXException, RuntimeException )
+ throw ( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadMenuHandler::endDocument(void)
- throw( SAXException, RuntimeException)
+ throw( SAXException, RuntimeException, std::exception)
{
}
void SAL_CALL OReadMenuHandler::startElement(
const OUString& aName, const Reference< XAttributeList > &xAttrList )
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
if ( m_bMenuPopupMode )
{
@@ -512,13 +512,13 @@ throw( SAXException, RuntimeException )
void SAL_CALL OReadMenuHandler::characters(const OUString&)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadMenuHandler::endElement( const OUString& aName )
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
if ( m_bMenuPopupMode )
{
@@ -563,19 +563,19 @@ OReadMenuPopupHandler::~OReadMenuPopupHandler()
void SAL_CALL OReadMenuPopupHandler::startDocument(void)
- throw ( SAXException, RuntimeException )
+ throw ( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadMenuPopupHandler::endDocument(void)
- throw( SAXException, RuntimeException)
+ throw( SAXException, RuntimeException, std::exception)
{
}
void SAL_CALL OReadMenuPopupHandler::startElement(
const OUString& rName, const Reference< XAttributeList > &xAttrList )
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
++m_nElementDepth;
@@ -716,13 +716,13 @@ throw( SAXException, RuntimeException )
void SAL_CALL OReadMenuPopupHandler::characters(const OUString&)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadMenuPopupHandler::endElement( const OUString& aName )
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
--m_nElementDepth;
if ( m_bMenuMode )
diff --git a/framework/source/fwe/xml/saxnamespacefilter.cxx b/framework/source/fwe/xml/saxnamespacefilter.cxx
index bf97c5066447..4cc22c5089c1 100644
--- a/framework/source/fwe/xml/saxnamespacefilter.cxx
+++ b/framework/source/fwe/xml/saxnamespacefilter.cxx
@@ -53,18 +53,18 @@ SaxNamespaceFilter::~SaxNamespaceFilter()
// XDocumentHandler
void SAL_CALL SaxNamespaceFilter::startDocument(void)
- throw ( SAXException, RuntimeException )
+ throw ( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL SaxNamespaceFilter::endDocument(void)
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL SaxNamespaceFilter::startElement(
const OUString& rName, const Reference< XAttributeList > &xAttribs )
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
XMLNamespaces aXMLNamespaces;
if ( !m_aNamespaceStack.empty() )
@@ -123,7 +123,7 @@ void SAL_CALL SaxNamespaceFilter::startElement(
}
void SAL_CALL SaxNamespaceFilter::endElement(const OUString& aName)
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
XMLNamespaces& aXMLNamespaces = m_aNamespaceStack.top();
OUString aNamespaceElementName;
@@ -143,27 +143,27 @@ void SAL_CALL SaxNamespaceFilter::endElement(const OUString& aName)
}
void SAL_CALL SaxNamespaceFilter::characters(const OUString& aChars)
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
xDocumentHandler->characters( aChars );
}
void SAL_CALL SaxNamespaceFilter::ignorableWhitespace(const OUString& aWhitespaces)
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
xDocumentHandler->ignorableWhitespace( aWhitespaces );
}
void SAL_CALL SaxNamespaceFilter::processingInstruction(
const OUString& aTarget, const OUString& aData)
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
xDocumentHandler->processingInstruction( aTarget, aData );
}
void SAL_CALL SaxNamespaceFilter::setDocumentLocator(
const Reference< XLocator > &xLocator)
- throw( SAXException, RuntimeException )
+ throw( SAXException, RuntimeException, std::exception )
{
m_xLocator = xLocator;
xDocumentHandler->setDocumentLocator( xLocator );
diff --git a/framework/source/fwe/xml/statusbardocumenthandler.cxx b/framework/source/fwe/xml/statusbardocumenthandler.cxx
index 2a799f3b962d..93fdbb2f4658 100644
--- a/framework/source/fwe/xml/statusbardocumenthandler.cxx
+++ b/framework/source/fwe/xml/statusbardocumenthandler.cxx
@@ -184,12 +184,12 @@ OReadStatusBarDocumentHandler::~OReadStatusBarDocumentHandler()
// XDocumentHandler
void SAL_CALL OReadStatusBarDocumentHandler::startDocument(void)
-throw ( SAXException, RuntimeException )
+throw ( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadStatusBarDocumentHandler::endDocument(void)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
ResetableGuard aGuard( m_aLock );
@@ -204,7 +204,7 @@ throw( SAXException, RuntimeException )
void SAL_CALL OReadStatusBarDocumentHandler::startElement(
const OUString& aName, const Reference< XAttributeList > &xAttribs )
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
ResetableGuard aGuard( m_aLock );
@@ -403,7 +403,7 @@ throw( SAXException, RuntimeException )
}
void SAL_CALL OReadStatusBarDocumentHandler::endElement(const OUString& aName)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
ResetableGuard aGuard( m_aLock );
@@ -445,24 +445,24 @@ throw( SAXException, RuntimeException )
}
void SAL_CALL OReadStatusBarDocumentHandler::characters(const OUString&)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadStatusBarDocumentHandler::ignorableWhitespace(const OUString&)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadStatusBarDocumentHandler::processingInstruction(
const OUString& /*aTarget*/, const OUString& /*aData*/ )
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadStatusBarDocumentHandler::setDocumentLocator(
const Reference< XLocator > &xLocator)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
ResetableGuard aGuard( m_aLock );
diff --git a/framework/source/fwe/xml/toolboxdocumenthandler.cxx b/framework/source/fwe/xml/toolboxdocumenthandler.cxx
index 19e94c9ac1e1..07367a49f784 100644
--- a/framework/source/fwe/xml/toolboxdocumenthandler.cxx
+++ b/framework/source/fwe/xml/toolboxdocumenthandler.cxx
@@ -197,12 +197,12 @@ OReadToolBoxDocumentHandler::~OReadToolBoxDocumentHandler()
// XDocumentHandler
void SAL_CALL OReadToolBoxDocumentHandler::startDocument(void)
-throw ( SAXException, RuntimeException )
+throw ( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadToolBoxDocumentHandler::endDocument(void)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
ResetableGuard aGuard( m_aLock );
@@ -217,7 +217,7 @@ throw( SAXException, RuntimeException )
void SAL_CALL OReadToolBoxDocumentHandler::startElement(
const OUString& aName, const Reference< XAttributeList > &xAttribs )
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
ResetableGuard aGuard( m_aLock );
@@ -535,7 +535,7 @@ throw( SAXException, RuntimeException )
}
void SAL_CALL OReadToolBoxDocumentHandler::endElement(const OUString& aName)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
ResetableGuard aGuard( m_aLock );
@@ -616,24 +616,24 @@ throw( SAXException, RuntimeException )
}
void SAL_CALL OReadToolBoxDocumentHandler::characters(const OUString&)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadToolBoxDocumentHandler::ignorableWhitespace(const OUString&)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadToolBoxDocumentHandler::processingInstruction(
const OUString& /*aTarget*/, const OUString& /*aData*/ )
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL OReadToolBoxDocumentHandler::setDocumentLocator(
const Reference< XLocator > &xLocator)
-throw( SAXException, RuntimeException )
+throw( SAXException, RuntimeException, std::exception )
{
ResetableGuard aGuard( m_aLock );