summaryrefslogtreecommitdiff
path: root/xmloff/source/meta/xmlmetae.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/meta/xmlmetae.cxx')
-rw-r--r--xmloff/source/meta/xmlmetae.cxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/xmloff/source/meta/xmlmetae.cxx b/xmloff/source/meta/xmlmetae.cxx
index 9d94e7917573..2cb5522e27a8 100644
--- a/xmloff/source/meta/xmlmetae.cxx
+++ b/xmloff/source/meta/xmlmetae.cxx
@@ -347,7 +347,6 @@ void SvXMLMetaExport::Export()
// css::xml::sax::XDocumentHandler:
void SAL_CALL
SvXMLMetaExport::startDocument()
- throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
{
// ignore: has already been done by SvXMLExport::exportDoc
assert(m_level == 0 && "SvXMLMetaExport: level error");
@@ -355,7 +354,6 @@ SvXMLMetaExport::startDocument()
void SAL_CALL
SvXMLMetaExport::endDocument()
- throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
{
// ignore: will be done by SvXMLExport::exportDoc
assert(m_level == 0 && "SvXMLMetaExport: level error");
@@ -365,7 +363,6 @@ SvXMLMetaExport::endDocument()
void SAL_CALL
SvXMLMetaExport::startElement(const OUString & i_rName,
const uno::Reference< xml::sax::XAttributeList > & i_xAttribs)
- throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
{
if (m_level == 0) {
@@ -447,7 +444,6 @@ SvXMLMetaExport::startElement(const OUString & i_rName,
void SAL_CALL
SvXMLMetaExport::endElement(const OUString & i_rName)
- throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
{
--m_level;
if (m_level == 0) {
@@ -460,14 +456,12 @@ SvXMLMetaExport::endElement(const OUString & i_rName)
void SAL_CALL
SvXMLMetaExport::characters(const OUString & i_rChars)
- throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
{
mrExport.Characters(i_rChars);
}
void SAL_CALL
SvXMLMetaExport::ignorableWhitespace(const OUString & /*i_rWhitespaces*/)
- throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
{
mrExport.IgnorableWhitespace(/*i_rWhitespaces*/);
}
@@ -475,7 +469,6 @@ SvXMLMetaExport::ignorableWhitespace(const OUString & /*i_rWhitespaces*/)
void SAL_CALL
SvXMLMetaExport::processingInstruction(const OUString & i_rTarget,
const OUString & i_rData)
- throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
{
// ignore; the exporter cannot handle these
(void) i_rTarget;
@@ -484,7 +477,6 @@ SvXMLMetaExport::processingInstruction(const OUString & i_rTarget,
void SAL_CALL
SvXMLMetaExport::setDocumentLocator(const uno::Reference<xml::sax::XLocator>&)
- throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
{
// nothing to do here, move along...
}