summaryrefslogtreecommitdiff
path: root/registry
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-10-10 13:02:43 +0000
committerOliver Bolte <obo@openoffice.org>2008-10-10 13:02:43 +0000
commit1a784f6768595b62ce05076f22a2c93b90e24cc3 (patch)
tree5ec849b506400ce23a004d352e50414375993297 /registry
parent8f9181922c32e5e47d11b2537e706aadb7c38407 (diff)
CWS-TOOLING: integrate CWS cmcfixes49
Diffstat (limited to 'registry')
-rw-r--r--registry/inc/registry/registry.h6
-rw-r--r--registry/source/registry.cxx2
-rw-r--r--registry/source/regkey.cxx4
3 files changed, 6 insertions, 6 deletions
diff --git a/registry/inc/registry/registry.h b/registry/inc/registry/registry.h
index 0c3174a833f2..294aaa0b3cad 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 89028260e0c1..cb145b3910c2 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 04594bc8b178..5c63c9cde09f 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)
{