INTEGRATION: CWS binfilter (1.19.130); FILE MERGED

2003/08/19 15:45:54 aw 1.19.130.2: #110680#
Give ServiceManager as const reference and do not keep it as reference locally as member
2003/07/07 15:45:39 aw 1.19.130.1: #110680#
Changed all components to use the ServiceManager they were created with.
This commit is contained in:
Rüdiger Timm 2004-05-03 12:31:04 +00:00
parent 9d1c717c80
commit f45ad03e50

View file

@ -2,9 +2,9 @@
*
* $RCSfile: SchXMLImport.hxx,v $
*
* $Revision: 1.19 $
* $Revision: 1.20 $
*
* last change: $Author: bm $ $Date: 2002-05-06 07:24:32 $
* last change: $Author: rt $ $Date: 2004-05-03 13:31:04 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -211,10 +211,18 @@ protected:
const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList >& xAttrList );
public:
SchXMLImport( sal_uInt16 nImportFlags = IMPORT_ALL );
SchXMLImport( com::sun::star::uno::Reference< com::sun::star::frame::XModel > xModel,
// #110680#
SchXMLImport(
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xServiceFactory,
sal_uInt16 nImportFlags = IMPORT_ALL );
// #110680#
SchXMLImport(
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xServiceFactory,
com::sun::star::uno::Reference< com::sun::star::frame::XModel > xModel,
com::sun::star::uno::Reference< com::sun::star::document::XGraphicObjectResolver > &,
sal_Bool bLoadDoc, sal_Bool bShowProgress );
virtual ~SchXMLImport() throw ();
// XServiceInfo ( : SvXMLExport )