diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-12-06 10:01:02 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-12-06 10:01:02 +0000 |
commit | 0611edff102aa97c34af606a1790f84f9aed99ab (patch) | |
tree | 3ae6ee2a9b235bfbdc2c9caa71ea24bc5e960802 /unoxml/source/dom/entity.hxx | |
parent | 563cdc1404907b08ede4148ad0d9528675a447e6 (diff) |
INTEGRATION: CWS os108 (1.5.40); FILE MERGED
2007/11/19 15:25:14 mst 1.5.40.1: - uno/xml/source/dom/*.{hc}xx:
add RuntimeException to exception specifications of 172 methods
of the DOM implementation where it was missing; fixes #i83675#
Diffstat (limited to 'unoxml/source/dom/entity.hxx')
-rw-r--r-- | unoxml/source/dom/entity.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/unoxml/source/dom/entity.hxx b/unoxml/source/dom/entity.hxx index 702c71ea47a2..058b3378f3d9 100644 --- a/unoxml/source/dom/entity.hxx +++ b/unoxml/source/dom/entity.hxx @@ -4,9 +4,9 @@ * * $RCSfile: entity.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: ihi $ $Date: 2007-11-19 16:44:03 $ + * last change: $Author: vg $ $Date: 2007-12-06 11:00:19 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -84,7 +84,7 @@ namespace DOM throw (RuntimeException); // --- delegation for XNde base. virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::appendChild(newChild); } @@ -165,7 +165,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); } @@ -180,23 +180,23 @@ namespace DOM CNode::normalize(); } virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::removeChild(oldChild); } virtual Reference< XNode > SAL_CALL replaceChild( const Reference< XNode >& newChild, const Reference< XNode >& oldChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::replaceChild(newChild, oldChild); } virtual void SAL_CALL setNodeValue(const OUString& nodeValue) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::setNodeValue(nodeValue); } virtual void SAL_CALL setPrefix(const OUString& prefix) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::setPrefix(prefix); } |