From 60046cfbd90360c8a6fb0d6a8c66642cf54a085c Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Tue, 26 Feb 2008 13:48:58 +0000 Subject: [PATCH] INTEGRATION: CWS custommeta (1.5.42); FILE MERGED 2008/02/01 10:36:26 mst 1.5.42.3: RESYNC: (1.6-1.7); FILE MERGED 2007/12/10 10:28:17 mst 1.5.42.2: RESYNC: (1.5-1.6); FILE MERGED 2007/12/07 14:05:56 mst 1.5.42.1: - unoxml/source/dom/document.{hxx,cxx}: implement interface css::xml::sax::XSAXSerializable - unoxml/source/dom/*.{hxx,cxx}: add virtual method saxify() on all subclasses of CNode add missing implementations of getLocalName() --- unoxml/source/dom/element.hxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/unoxml/source/dom/element.hxx b/unoxml/source/dom/element.hxx index 61ec60d95ef5..dd9fdc84e968 100644 --- a/unoxml/source/dom/element.hxx +++ b/unoxml/source/dom/element.hxx @@ -4,9 +4,9 @@ * * $RCSfile: element.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: vg $ $Date: 2007-12-06 11:00:04 $ + * last change: $Author: obo $ $Date: 2008-02-26 14:48:58 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -62,6 +62,9 @@ namespace DOM public: + virtual void SAL_CALL saxify( + const Reference< XDocumentHandler >& i_xHandler); + /** Retrieves an attribute value by name. */ @@ -179,6 +182,8 @@ namespace DOM throw (RuntimeException); virtual Reference< XNamedNodeMap > SAL_CALL getAttributes() throw (RuntimeException); + virtual OUString SAL_CALL getLocalName() + throw (RuntimeException); // resolve uno inheritance problems... // --- delegation for XNde base. @@ -207,11 +212,6 @@ namespace DOM { return CNode::getLastChild(); } - virtual OUString SAL_CALL getLocalName() - throw (RuntimeException) - { - return CNode::getLocalName(); - } virtual OUString SAL_CALL getNamespaceURI() throw (RuntimeException) {