diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-07-05 12:24:35 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-07-05 12:24:35 +0000 |
commit | 5bd106db642b986f3f80c6a73e208efa3f56ad4e (patch) | |
tree | 12563efc68a7e73697647d18bd49c8d254820ec0 /configmgr/source | |
parent | e842bb9e49912eae54183678111a2e4c0a245565 (diff) |
INTEGRATION: CWS scp2officecfg (1.26.4); FILE MERGED
2004/06/08 14:31:54 jb 1.26.4.1: #i25937# Reorganize local backends to separate fixed default data from localizations, so that module configuration can be installed
Diffstat (limited to 'configmgr/source')
-rw-r--r-- | configmgr/source/misc/configunoreg.cxx | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/configmgr/source/misc/configunoreg.cxx b/configmgr/source/misc/configunoreg.cxx index 16da461fdd88..5d4f2924b5b6 100644 --- a/configmgr/source/misc/configunoreg.cxx +++ b/configmgr/source/misc/configunoreg.cxx @@ -2,9 +2,9 @@ * * $RCSfile: configunoreg.cxx,v $ * - * $Revision: 1.26 $ + * $Revision: 1.27 $ * - * last change: $Author: rt $ $Date: 2004-03-30 14:59:39 $ + * last change: $Author: obo $ $Date: 2004-07-05 13:24:35 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -293,7 +293,10 @@ extern "C" sal_Bool SAL_CALL component_writeInfo( RegisterService(configmgr::localbe::getLocalDataImportServiceInfo(), xKey) ; RegisterService(configmgr::localbe::getLocalHierarchyBrowserServiceInfo(), xKey) ; RegisterService(configmgr::localbe::getLocalSchemaSupplierServiceInfo(), xKey) ; - RegisterService(configmgr::localbe::getLocalSingleStratumServiceInfo(), xKey) ; + RegisterService(configmgr::localbe::getLocalLegacyStratumServiceInfo(), xKey) ; + RegisterService(configmgr::localbe::getLocalDataStratumServiceInfo(), xKey) ; + RegisterService(configmgr::localbe::getLocalReadonlyStratumServiceInfo(), xKey) ; + RegisterService(configmgr::localbe::getLocalResourceStratumServiceInfo(), xKey) ; // im/export RegisterService(configmgr::backend::getMergeImportServiceInfo(), xKey); @@ -396,8 +399,20 @@ extern "C" void* SAL_CALL component_getFactory( configmgr::localbe::instantiateLocalSchemaSupplier) || aReq.CreateServiceFactory( - configmgr::localbe::getLocalSingleStratumServiceInfo(), - configmgr::localbe::instantiateLocalSingleStratum) + configmgr::localbe::getLocalLegacyStratumServiceInfo(), + configmgr::localbe::instantiateLocalLegacyStratum) + || + aReq.CreateServiceFactory( + configmgr::localbe::getLocalDataStratumServiceInfo(), + configmgr::localbe::instantiateLocalDataStratum) + || + aReq.CreateServiceFactory( + configmgr::localbe::getLocalReadonlyStratumServiceInfo(), + configmgr::localbe::instantiateLocalReadonlyStratum) + || + aReq.CreateServiceFactory( + configmgr::localbe::getLocalResourceStratumServiceInfo(), + configmgr::localbe::instantiateLocalResourceStratum) || // im/export aReq.CreateServiceFactory( |