diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-05-03 12:36:56 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-05-03 12:36:56 +0000 |
commit | 8d51ebae5c1ccdc50c7074b032151a0534f7f948 (patch) | |
tree | 04a30ed72824f6545fda5387bbb458b911d21344 | |
parent | 44663657ef80ae4b2c7195e6e50d07e2d1a56890 (diff) |
INTEGRATION: CWS binfilter (1.4.150); FILE MERGED
2003/08/19 15:46:32 aw 1.4.150.2: #110680#
Give ServiceManager as const reference and do not keep it as reference locally as member
2003/07/07 15:46:25 aw 1.4.150.1: #110680#
Changed all components to use the ServiceManager they were created with.
-rw-r--r-- | xmloff/source/text/XMLAutoTextEventExport.hxx | 31 |
1 files changed, 21 insertions, 10 deletions
diff --git a/xmloff/source/text/XMLAutoTextEventExport.hxx b/xmloff/source/text/XMLAutoTextEventExport.hxx index c02f1e39e0e6..0817a1c776eb 100644 --- a/xmloff/source/text/XMLAutoTextEventExport.hxx +++ b/xmloff/source/text/XMLAutoTextEventExport.hxx @@ -2,9 +2,9 @@ * * $RCSfile: XMLAutoTextEventExport.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: dvo $ $Date: 2001-06-29 21:07:21 $ + * last change: $Author: rt $ $Date: 2004-05-03 13:36:56 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -100,16 +100,27 @@ class XMLAutoTextEventExport : public SvXMLExport public: - XMLAutoTextEventExport(); - + // #110680# + //XMLAutoTextEventExport(); + XMLAutoTextEventExport( + const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xServiceFactory + ); + + // #110680# + //XMLAutoTextEventExport( + // const ::rtl::OUString& rFileName, + // const ::com::sun::star::uno::Reference< + // ::com::sun::star::xml::sax::XDocumentHandler > & rHandler, + // const ::com::sun::star::uno::Reference< + // ::com::sun::star::frame::XModel > & rModel, + // const ::com::sun::star::uno::Reference< + // ::com::sun::star::container::XNameAccess > & rEvents); XMLAutoTextEventExport( + const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xServiceFactory, const ::rtl::OUString& rFileName, - const ::com::sun::star::uno::Reference< - ::com::sun::star::xml::sax::XDocumentHandler > & rHandler, - const ::com::sun::star::uno::Reference< - ::com::sun::star::frame::XModel > & rModel, - const ::com::sun::star::uno::Reference< - ::com::sun::star::container::XNameAccess > & rEvents); + const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XDocumentHandler > & rHandler, + const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel > & rModel, + const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > & rEvents); ~XMLAutoTextEventExport(); |