diff options
author | Michael Stahl <mst@openoffice.org> | 2011-02-14 18:04:07 +0100 |
---|---|---|
committer | Michael Stahl <mst@openoffice.org> | 2011-02-14 18:04:07 +0100 |
commit | 474bdcff90ba81ac9297cc65bd553b93a95f172a (patch) | |
tree | fab75596e6d7131aff428e91efb8e6403c4fb859 | |
parent | 8d5761ee49e21bb3e51cbc271b457bd25c411cd8 (diff) |
xmlfix3: argh, another unhandled exception...
-rw-r--r-- | unoxml/source/dom/document.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unoxml/source/dom/document.hxx b/unoxml/source/dom/document.hxx index 9eed407c5aaf..c85a85fba9a6 100644 --- a/unoxml/source/dom/document.hxx +++ b/unoxml/source/dom/document.hxx @@ -344,7 +344,7 @@ namespace DOM } virtual Reference< XNode > SAL_CALL insertBefore( const Reference< XNode >& newChild, const Reference< XNode >& refChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::insertBefore(newChild, refChild); } |