diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-05-03 12:35:19 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-05-03 12:35:19 +0000 |
commit | 2cd87dc89b7d1e4fa4f0737c1c933fadd36823fb (patch) | |
tree | 30d053eb9f2fcf30e75fc397adc042e5467f1846 /xmloff | |
parent | 622c62f08d5e579f9fb1b74d7c4ff973639178a2 (diff) |
INTEGRATION: CWS binfilter (1.21.34); FILE MERGED
2003/07/08 17:32:54 aw 1.21.34.2: #110680#
2003/07/07 15:46:18 aw 1.21.34.1: #110680#
Changed all components to use the ServiceManager they were created with.
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/forms/layerexport.cxx | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/xmloff/source/forms/layerexport.cxx b/xmloff/source/forms/layerexport.cxx index e8adff2c4b7b..45f7a777eb7d 100644 --- a/xmloff/source/forms/layerexport.cxx +++ b/xmloff/source/forms/layerexport.cxx @@ -2,9 +2,9 @@ * * $RCSfile: layerexport.cxx,v $ * - * $Revision: 1.21 $ + * $Revision: 1.22 $ * - * last change: $Author: vg $ $Date: 2003-04-15 16:33:18 $ + * last change: $Author: rt $ $Date: 2004-05-03 13:35:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -100,9 +100,12 @@ #ifndef _COMPHELPER_EXTRACT_HXX_ #include <comphelper/extract.hxx> #endif -#ifndef _COMPHELPER_PROCESSFACTORY_HXX_ -#include <comphelper/processfactory.hxx> -#endif + +// #110680# +//#ifndef _COMPHELPER_PROCESSFACTORY_HXX_ +//#include <comphelper/processfactory.hxx> +//#endif + #ifndef _XMLOFF_FORMS_CONTROLPROPERTYMAP_HXX_ #include "controlpropertymap.hxx" #endif @@ -763,8 +766,14 @@ namespace xmloff ::rtl::OUString::createFromAscii("US"), ::rtl::OUString() ); + // #110680# + //Reference< XInterface > xFormatsSupplierUntyped = + // ::comphelper::getProcessServiceFactory()->createInstanceWithArguments( + // SERVICE_NUMBERFORMATSSUPPLIER, + // aSupplierArgs + // ); Reference< XInterface > xFormatsSupplierUntyped = - ::comphelper::getProcessServiceFactory()->createInstanceWithArguments( + m_rContext.getServiceFactory()->createInstanceWithArguments( SERVICE_NUMBERFORMATSSUPPLIER, aSupplierArgs ); |