diff options
Diffstat (limited to 'unoxml/source/dom/entityreference.cxx')
-rw-r--r-- | unoxml/source/dom/entityreference.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unoxml/source/dom/entityreference.cxx b/unoxml/source/dom/entityreference.cxx index e0576d0032c1..e8f2a3fe9b23 100644 --- a/unoxml/source/dom/entityreference.cxx +++ b/unoxml/source/dom/entityreference.cxx @@ -46,7 +46,7 @@ namespace DOM } } - OUString SAL_CALL CEntityReference::getNodeName()throw (RuntimeException) + OUString SAL_CALL CEntityReference::getNodeName()throw (RuntimeException, std::exception) { ::osl::MutexGuard const g(m_rMutex); @@ -59,7 +59,7 @@ namespace DOM return aName; } - OUString SAL_CALL CEntityReference::getNodeValue() throw (RuntimeException) + OUString SAL_CALL CEntityReference::getNodeValue() throw (RuntimeException, std::exception) { return OUString(); } |