diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx index 46724434db17..8c3b4b293542 100644 --- a/xmloff/source/core/xmlexp.cxx +++ b/xmloff/source/core/xmlexp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlexp.cxx,v $ * - * $Revision: 1.39 $ + * $Revision: 1.40 $ * - * last change: $Author: cl $ $Date: 2001-03-01 16:30:50 $ + * last change: $Author: dvo $ $Date: 2001-03-02 20:17:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -245,9 +245,11 @@ SvXMLExport::SvXMLExport( bExtended( sal_False ), xHandler( rHandler ), xExtHandler( rHandler, uno::UNO_QUERY ), + pNumExport(0L), pProgressBarHelper( NULL ), pEventExport( NULL ), - bSaveLinkedSections(sal_True) + bSaveLinkedSections(sal_True), + mnExportFlags( EXPORT_ALL ) { _InitCtor(); @@ -275,7 +277,8 @@ SvXMLExport::SvXMLExport( xNumberFormatsSupplier (rModel, uno::UNO_QUERY), pProgressBarHelper( NULL ), pEventExport( NULL ), - bSaveLinkedSections(sal_True) + bSaveLinkedSections(sal_True), + mnExportFlags( EXPORT_ALL ) { _InitCtor(); @@ -305,7 +308,8 @@ SvXMLExport::SvXMLExport( xNumberFormatsSupplier (rModel, uno::UNO_QUERY), pProgressBarHelper( NULL ), pEventExport( NULL ), - bSaveLinkedSections(sal_True) + bSaveLinkedSections(sal_True), + mnExportFlags( EXPORT_ALL ) { _InitCtor(); diff --git a/xmloff/source/core/xmlimp.cxx b/xmloff/source/core/xmlimp.cxx index 1a232722b992..876398b85e1c 100644 --- a/xmloff/source/core/xmlimp.cxx +++ b/xmloff/source/core/xmlimp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlimp.cxx,v $ * - * $Revision: 1.24 $ + * $Revision: 1.25 $ * - * last change: $Author: cl $ $Date: 2001-03-01 16:30:50 $ + * last change: $Author: dvo $ $Date: 2001-03-02 20:17:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -240,7 +240,8 @@ SvXMLImport::SvXMLImport( const Reference< XModel > & rModel ) throw () : xModel( rModel ), xNumberFormatsSupplier (rModel, uno::UNO_QUERY), pProgressBarHelper( NULL ), - pEventImportHelper( NULL ) + pEventImportHelper( NULL ), + mnImportFlags( IMPORT_ALL ) { _InitCtor(); } @@ -256,7 +257,8 @@ SvXMLImport::SvXMLImport( const Reference< XModel > & rModel, xGraphicResolver( rGraphicObjects ), xNumberFormatsSupplier (rModel, uno::UNO_QUERY), pProgressBarHelper( NULL ), - pEventImportHelper( NULL ) + pEventImportHelper( NULL ), + mnImportFlags( IMPORT_ALL ) { _InitCtor(); }