diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-10-15 12:14:41 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-10-15 12:14:41 +0000 |
commit | adb88f30f3ccb584584ab24137750f5e604f8d0a (patch) | |
tree | c2695159fecbd055160c899f0cf283337ba40812 /cpputools | |
parent | a6db826a3cb4db147d359360b8a66b284b53bc88 (diff) |
INTEGRATION: CWS sb71 (1.5.8); FILE MERGED
2007/06/22 09:35:48 sb 1.5.8.1: #i75466# Support for dynamic loading of the reg shared library has been dropped.
Diffstat (limited to 'cpputools')
-rwxr-xr-x | cpputools/source/regcomplazy/regcomplazy.cxx | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/cpputools/source/regcomplazy/regcomplazy.cxx b/cpputools/source/regcomplazy/regcomplazy.cxx index ff5b8035d82f..dbd4b846ed88 100755 --- a/cpputools/source/regcomplazy/regcomplazy.cxx +++ b/cpputools/source/regcomplazy/regcomplazy.cxx @@ -4,9 +4,9 @@ * * $RCSfile: regcomplazy.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: vg $ $Date: 2006-11-22 10:49:55 $ + * last change: $Author: vg $ $Date: 2007-10-15 13:14:41 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -198,15 +198,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) // insert the last descriptor vDescr.push_back(descr); - RegistryLoader* pLoader = new RegistryLoader(); - if (!pLoader->isLoaded()) - { - delete pLoader; - return 1; - } - - Registry *pReg = new Registry(*pLoader); - delete pLoader; + Registry *pReg = new Registry; RegistryKey rootKey, key, subKey, serviceKey; |