diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-11-09 11:35:16 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-11-09 11:35:16 +0000 |
commit | 95dd3fc0dccbc973c5085bbc670e3e0bb75a31c7 (patch) | |
tree | 22877c5941863dfe042e7a416b3427199b3121af /xmlscript | |
parent | 73ca15a52fc01e89c35577bd412c3e3b5d53548f (diff) |
INTEGRATION: CWS xmlbasic (1.31.6); FILE MERGED
2004/09/30 11:01:58 tbe 1.31.6.1: #i22747# XML filter adaptors and macros
Diffstat (limited to 'xmlscript')
-rw-r--r-- | xmlscript/source/xmldlg_imexp/xmldlg_export.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx index 434df6c95ce9..0ef975e01047 100644 --- a/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx +++ b/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmldlg_export.cxx,v $ * - * $Revision: 1.31 $ + * $Revision: 1.32 $ * - * last change: $Author: kz $ $Date: 2004-07-30 16:49:10 $ + * last change: $Author: hr $ $Date: 2004-11-09 12:35:16 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1176,7 +1176,7 @@ void StyleBag::dump( Reference< xml::sax::XExtendedDocumentHandler > const & xOu for ( size_t nPos = 0; nPos < _styles.size(); ++nPos ) { Reference< xml::sax::XAttributeList > xAttr( _styles[ nPos ]->createElement() ); - static_cast< ElementDescriptor * >( xAttr.get() )->dump( xOut ); + static_cast< ElementDescriptor * >( xAttr.get() )->dump( xOut.get() ); } xOut->ignorableWhitespace( OUString() ); xOut->endElement( aStylesName ); @@ -1423,7 +1423,7 @@ void SAL_CALL exportDialogModel( xOut->ignorableWhitespace( OUString() ); xOut->startElement( aWindowName, xWindow ); // dump out events - pWindow->dumpSubElements( xOut ); + pWindow->dumpSubElements( xOut.get() ); // dump out stylebag all_styles.dump( xOut ); @@ -1438,7 +1438,7 @@ void SAL_CALL exportDialogModel( for ( size_t nPos = 0; nPos < all_elements.size(); ++nPos ) { ElementDescriptor * pElem = static_cast< ElementDescriptor * >( all_elements[ nPos ].get() ); - pElem->dump( xOut ); + pElem->dump( xOut.get() ); } // end bulletinboard |