diff options
author | Oliver Braun <obr@openoffice.org> | 2000-11-03 12:44:33 +0000 |
---|---|---|
committer | Oliver Braun <obr@openoffice.org> | 2000-11-03 12:44:33 +0000 |
commit | 93350661bec317f661c6b790ee9f080df100c5aa (patch) | |
tree | 0a1f0bec3fafe5b00c05269005779417dc9f4ad5 /registry | |
parent | 2f2e0072eaea79aa6006abad9dce96e46af9bcee (diff) |
c'tor of ODynamicLoader changed
Diffstat (limited to 'registry')
-rw-r--r-- | registry/inc/registry/reflread.hxx | 9 | ||||
-rw-r--r-- | registry/inc/registry/reflwrit.hxx | 9 | ||||
-rw-r--r-- | registry/inc/registry/registry.hxx | 10 | ||||
-rw-r--r-- | registry/inc/registry/regtype.h | 6 |
4 files changed, 16 insertions, 18 deletions
diff --git a/registry/inc/registry/reflread.hxx b/registry/inc/registry/reflread.hxx index 5976133156ea..7e414bce3561 100644 --- a/registry/inc/registry/reflread.hxx +++ b/registry/inc/registry/reflread.hxx @@ -2,9 +2,9 @@ * * $RCSfile: reflread.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jsc $ $Date: 2000-10-16 11:11:19 $ + * last change: $Author: obr $ $Date: 2000-11-03 13:44:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -143,9 +143,8 @@ class RegistryTypeReaderLoader public: RegistryTypeReaderLoader() : ::vos::ODynamicLoader<RegistryTypeReader_Api> - (::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("reg") ), - ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(REGISTRY_TYPE_READER_INIT_FUNCTION_NAME) ), - sal_True, LIBRARY_VERSION, sal_False) + (::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( SAL_MODULENAME( "reg" LIBRARY_VERSION ) ) ), + ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(REGISTRY_TYPE_READER_INIT_FUNCTION_NAME) )) {} ~RegistryTypeReaderLoader() diff --git a/registry/inc/registry/reflwrit.hxx b/registry/inc/registry/reflwrit.hxx index fca36955eeb7..39ec5526c013 100644 --- a/registry/inc/registry/reflwrit.hxx +++ b/registry/inc/registry/reflwrit.hxx @@ -2,9 +2,9 @@ * * $RCSfile: reflwrit.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jsc $ $Date: 2000-10-16 11:12:04 $ + * last change: $Author: obr $ $Date: 2000-11-03 13:44:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -122,9 +122,8 @@ class RegistryTypeWriterLoader public: RegistryTypeWriterLoader() : ::vos::ODynamicLoader<RegistryTypeWriter_Api> - (::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("reg") ), - ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(REGISTRY_TYPE_WRITER_INIT_FUNCTION_NAME) ), - sal_True, LIBRARY_VERSION, sal_False) + (::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( SAL_MODULENAME( "reg" LIBRARY_VERSION ) ) ), + ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(REGISTRY_TYPE_WRITER_INIT_FUNCTION_NAME) )) {} ~RegistryTypeWriterLoader() diff --git a/registry/inc/registry/registry.hxx b/registry/inc/registry/registry.hxx index bc4acd25b3ad..7bf6a1da38b2 100644 --- a/registry/inc/registry/registry.hxx +++ b/registry/inc/registry/registry.hxx @@ -2,9 +2,9 @@ * * $RCSfile: registry.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 15:18:42 $ + * last change: $Author: obr $ $Date: 2000-11-03 13:44:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -65,6 +65,7 @@ #ifndef _REGISTRY_REGTYPE_H_ #include <registry/regtype.h> #endif + #ifndef _VOS_DYNLOAD_HXX_ #include <vos/dynload.hxx> #endif @@ -144,9 +145,8 @@ public: /// Default constructor, try to load the registry DLL and initialize the needed api. RegistryLoader() : ::vos::ODynamicLoader<Registry_Api> - (::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("reg") ), - ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(REGISTRY_INIT_FUNCTION_NAME) ), - sal_True, LIBRARY_VERSION, sal_False) + (::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( SAL_MODULENAME( "reg" LIBRARY_VERSION ) ) ), + ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(REGISTRY_INIT_FUNCTION_NAME) )) {} /// Destructor, decrease the refcount and unload the DLL if the refcount is 0. diff --git a/registry/inc/registry/regtype.h b/registry/inc/registry/regtype.h index 42f8643e3fa7..53b4e504ca0d 100644 --- a/registry/inc/registry/regtype.h +++ b/registry/inc/registry/regtype.h @@ -2,9 +2,9 @@ * * $RCSfile: regtype.h,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 15:18:42 $ + * last change: $Author: obr $ $Date: 2000-11-03 13:44:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -68,7 +68,7 @@ // version number of the library. This number is used for the load on call // mechanism and must be modifed when the library will be upgraded to a new version. -#define LIBRARY_VERSION 2 +#define LIBRARY_VERSION "2" typedef void* RegHandle; |