summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/element.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-02-26 13:48:58 +0000
committerOliver Bolte <obo@openoffice.org>2008-02-26 13:48:58 +0000
commit60046cfbd90360c8a6fb0d6a8c66642cf54a085c (patch)
treee64c7302c0db701a9e40495be64c9f91bd4f80ed /unoxml/source/dom/element.hxx
parent9f892eb3a4434b80a752b5162a932b6dff1ddcc2 (diff)
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()
Diffstat (limited to 'unoxml/source/dom/element.hxx')
-rw-r--r--unoxml/source/dom/element.hxx14
1 files 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)
{