diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-10-10 13:02:43 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-10-10 13:02:43 +0000 |
commit | fa06b5c3dd0c87f163d04d4542c964beed494cad (patch) | |
tree | a27102cb8e792102922162d9a1b4702a71c292d6 /registry | |
parent | 3903fc891459a2f1a166f4e731877181451c4d1d (diff) |
CWS-TOOLING: integrate CWS cmcfixes49
Diffstat (limited to 'registry')
-rw-r--r-- | registry/inc/registry/registry.h | 6 | ||||
-rw-r--r-- | registry/source/registry.cxx | 2 | ||||
-rw-r--r-- | registry/source/regkey.cxx | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/registry/inc/registry/registry.h b/registry/inc/registry/registry.h index f13a6c546..794407584 100644 --- a/registry/inc/registry/registry.h +++ b/registry/inc/registry/registry.h @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: registry.h,v $ - * $Revision: 1.4 $ + * $Revision: 1.4.8.1 $ * * This file is part of OpenOffice.org. * @@ -126,7 +126,7 @@ RegError REGISTRY_CALLTYPE reg_closeKey(RegKeyHandle hKey); @param hKey identifies a currently open key which name will be returned. @param pKeyName contains the keyname if succeeds else an empty string. */ -const RegError REGISTRY_CALLTYPE reg_getKeyName(RegKeyHandle hKey, rtl_uString** pKeyName); +RegError REGISTRY_CALLTYPE reg_getKeyName(RegKeyHandle hKey, rtl_uString** pKeyName); /** This function sets a value of a key. @@ -429,7 +429,7 @@ RegError REGISTRY_CALLTYPE reg_openRootKey(RegHandle hRegistry, @param pName returns the name of the registry if the function succeeds otherwise an empty string. @return REG_NO_ERROR if succeeds else an error code. */ -const RegError REGISTRY_CALLTYPE reg_getName(RegHandle hRegistry, rtl_uString** pName); +RegError REGISTRY_CALLTYPE reg_getName(RegHandle hRegistry, rtl_uString** pName); /** This function returns the access mode of the registry. diff --git a/registry/source/registry.cxx b/registry/source/registry.cxx index 1bd613778..ca3647df3 100644 --- a/registry/source/registry.cxx +++ b/registry/source/registry.cxx @@ -605,7 +605,7 @@ RegError REGISTRY_CALLTYPE reg_openRootKey(RegHandle hRegistry, //********************************************************************* // reg_getName // -const RegError REGISTRY_CALLTYPE reg_getName(RegHandle hRegistry, rtl_uString** pName) +RegError REGISTRY_CALLTYPE reg_getName(RegHandle hRegistry, rtl_uString** pName) { return getName(hRegistry, pName); } diff --git a/registry/source/regkey.cxx b/registry/source/regkey.cxx index 090aa1848..760b1c6af 100644 --- a/registry/source/regkey.cxx +++ b/registry/source/regkey.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: regkey.cxx,v $ - * $Revision: 1.7 $ + * $Revision: 1.7.8.1 $ * * This file is part of OpenOffice.org. * @@ -1053,7 +1053,7 @@ RegError REGISTRY_CALLTYPE reg_closeKey(RegKeyHandle hKey) //********************************************************************* // reg_getKeyName // -const RegError REGISTRY_CALLTYPE reg_getKeyName(RegKeyHandle hKey, rtl_uString** pKeyName) +RegError REGISTRY_CALLTYPE reg_getKeyName(RegKeyHandle hKey, rtl_uString** pKeyName) { if (hKey) { |