summaryrefslogtreecommitdiff
path: root/xmlscript
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-11-09 11:34:42 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-11-09 11:34:42 +0000
commitb8db8c7835dea1625cee4b025335f03d1190f797 (patch)
tree126f0d8fd6e338582f039bc5a984d43eb9e23cc4 /xmlscript
parentebe245379110f0a9a92516ddc397efc6d75767ab (diff)
INTEGRATION: CWS xmlbasic (1.2.128); FILE MERGED
2004/09/30 10:59:57 tbe 1.2.128.1: #i22747# XML filter adaptors and macros
Diffstat (limited to 'xmlscript')
-rw-r--r--xmlscript/source/xml_helper/xml_element.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmlscript/source/xml_helper/xml_element.cxx b/xmlscript/source/xml_helper/xml_element.cxx
index d2656ecc2242..a24c630b1732 100644
--- a/xmlscript/source/xml_helper/xml_element.cxx
+++ b/xmlscript/source/xml_helper/xml_element.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xml_element.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: dbo $ $Date: 2001-08-24 11:16:38 $
+ * last change: $Author: hr $ $Date: 2004-11-09 12:34:42 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -89,7 +89,7 @@ Reference< xml::sax::XAttributeList > XMLElement::getSubElement( sal_Int32 nInde
return _subElems[ (size_t)nIndex ];
}
//__________________________________________________________________________________________________
-void XMLElement::dumpSubElements( Reference< xml::sax::XExtendedDocumentHandler > const & xOut )
+void XMLElement::dumpSubElements( Reference< xml::sax::XDocumentHandler > const & xOut )
{
for ( size_t nPos = 0; nPos < _subElems.size(); ++nPos )
{
@@ -98,7 +98,7 @@ void XMLElement::dumpSubElements( Reference< xml::sax::XExtendedDocumentHandler
}
}
//__________________________________________________________________________________________________
-void XMLElement::dump( Reference< xml::sax::XExtendedDocumentHandler > const & xOut )
+void XMLElement::dump( Reference< xml::sax::XDocumentHandler > const & xOut )
{
xOut->ignorableWhitespace( OUString() );
xOut->startElement( _name, static_cast< xml::sax::XAttributeList * >( this ) );