summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/elementlist.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/elementlist.cxx')
-rw-r--r--unoxml/source/dom/elementlist.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/unoxml/source/dom/elementlist.cxx b/unoxml/source/dom/elementlist.cxx
index c851faf426b3..fad086a3b604 100644
--- a/unoxml/source/dom/elementlist.cxx
+++ b/unoxml/source/dom/elementlist.cxx
@@ -44,8 +44,7 @@ namespace
{
}
- virtual void SAL_CALL handleEvent(const css::uno::Reference<css::xml::dom::events::XEvent>& rEvent)
- throw(css::uno::RuntimeException, std::exception) override
+ virtual void SAL_CALL handleEvent(const css::uno::Reference<css::xml::dom::events::XEvent>& rEvent) override
{
css::uno::Reference<css::xml::dom::events::XEventListener> xOwner(mxOwner.get(),
css::uno::UNO_QUERY);
@@ -155,7 +154,7 @@ namespace DOM
/**
The number of nodes in the list.
*/
- sal_Int32 SAL_CALL CElementListImpl::getLength() throw (RuntimeException, std::exception)
+ sal_Int32 SAL_CALL CElementListImpl::getLength()
{
::osl::MutexGuard const g(m_rMutex);
@@ -169,7 +168,6 @@ namespace DOM
Returns the indexth item in the collection.
*/
Reference< XNode > SAL_CALL CElementListImpl::item(sal_Int32 index)
- throw (RuntimeException, std::exception)
{
if (index < 0) throw RuntimeException();
@@ -188,7 +186,6 @@ namespace DOM
// tree mutations can change the list
void SAL_CALL CElementListImpl::handleEvent(Reference< XEvent > const&)
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard const g(m_rMutex);