summaryrefslogtreecommitdiff
path: root/registry/source/registry.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-07-03 10:20:29 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-07-03 15:41:16 +0200
commitcade2b8f9f9c39fc7bc6960f5faf591860be58ae (patch)
treeed5bcf93a5aab0aed4e67081720c6c4065c2fca9 /registry/source/registry.cxx
parent6556043364877c0ac74c07b509856dccfe52e43a (diff)
No need for a C API here
Change-Id: Ie453a7c97a762932884c5c41b13607a170368107
Diffstat (limited to 'registry/source/registry.cxx')
-rw-r--r--registry/source/registry.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/registry/source/registry.cxx b/registry/source/registry.cxx
index bc73fcb63d10..0b2ec2a0696c 100644
--- a/registry/source/registry.cxx
+++ b/registry/source/registry.cxx
@@ -18,7 +18,7 @@
*/
-#include <registry.h>
+#include <regapi.hxx>
#include <registry/registry.hxx>
#include <osl/process.h>
@@ -485,8 +485,8 @@ RegError REGISTRY_CALLTYPE reg_saveKey(RegKeyHandle hKey,
RegError REGISTRY_CALLTYPE reg_mergeKey(RegKeyHandle hKey,
rtl_uString* keyName,
rtl_uString* regFileName,
- sal_Bool bWarnings,
- sal_Bool bReport)
+ bool bWarnings,
+ bool bReport)
{
ORegKey *pKey;
@@ -541,7 +541,7 @@ RegError REGISTRY_CALLTYPE reg_getName(RegHandle hRegistry, rtl_uString** pName)
// reg_isReadOnly
-sal_Bool REGISTRY_CALLTYPE reg_isReadOnly(RegHandle hRegistry)
+bool REGISTRY_CALLTYPE reg_isReadOnly(RegHandle hRegistry)
{
return isReadOnly(hRegistry);
}