summaryrefslogtreecommitdiff
path: root/cui/source/options/personasdochandler.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cui/source/options/personasdochandler.cxx')
-rw-r--r--cui/source/options/personasdochandler.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/cui/source/options/personasdochandler.cxx b/cui/source/options/personasdochandler.cxx
index 9173aea8b550..90809abaa99d 100644
--- a/cui/source/options/personasdochandler.cxx
+++ b/cui/source/options/personasdochandler.cxx
@@ -15,19 +15,16 @@ using namespace ::com::sun::star::uno;
// XDocumentHandler
void SAL_CALL
PersonasDocHandler::startDocument()
-throw ( xml::sax::SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL
PersonasDocHandler::endDocument()
-throw ( xml::sax::SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL
PersonasDocHandler::characters( const OUString & aChars)
- throw ( xml::sax::SAXException, RuntimeException, std::exception )
{
if( m_isLearnmoreTag )
m_vLearnmoreURLs.push_back( aChars );
@@ -35,29 +32,24 @@ PersonasDocHandler::characters( const OUString & aChars)
void SAL_CALL
PersonasDocHandler::ignorableWhitespace( const OUString & )
- throw ( xml::sax::SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL
PersonasDocHandler::processingInstruction(
const OUString &, const OUString & )
- throw ( xml::sax::SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL
PersonasDocHandler::setDocumentLocator(
const Reference< xml::sax::XLocator >& )
- throw ( xml::sax::SAXException, RuntimeException, std::exception )
{
}
void SAL_CALL
PersonasDocHandler::startElement( const OUString& aName,
const Reference< xml::sax::XAttributeList > &xAttribs )
- throw ( xml::sax::SAXException,
- RuntimeException, std::exception )
{
if( aName == "searchresults" )
{
@@ -73,7 +65,6 @@ PersonasDocHandler::startElement( const OUString& aName,
}
void SAL_CALL PersonasDocHandler::endElement( const OUString & )
- throw ( xml::sax::SAXException, RuntimeException, std::exception )
{
}