summaryrefslogtreecommitdiff
path: root/registry/source/keyimpl.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-15 14:52:57 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-17 17:55:17 +0100
commit20726ae6644236481cd15e2156935ba842cf88fd (patch)
treeaa16ebb9e654c0c774b969afe93850b594b05fa9 /registry/source/keyimpl.hxx
parent07d3807e999445c87553e7a6c5876d07ca431737 (diff)
registry: sal_Bool -> bool
Change-Id: Iaf118eca7a7b24945afbc1959ad78c712e4a299b
Diffstat (limited to 'registry/source/keyimpl.hxx')
-rw-r--r--registry/source/keyimpl.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/registry/source/keyimpl.hxx b/registry/source/keyimpl.hxx
index 281872eb48da..7d76d18d32aa 100644
--- a/registry/source/keyimpl.hxx
+++ b/registry/source/keyimpl.hxx
@@ -99,7 +99,7 @@ public:
bool isDeleted() const
{ return m_bDeleted != 0; }
- void setDeleted (sal_Bool bKeyDeleted)
+ void setDeleted (bool bKeyDeleted)
{ m_bDeleted = bKeyDeleted ? 1 : 0; }
bool isModified() const
@@ -108,7 +108,7 @@ public:
void setModified (bool bModified = true)
{ m_bModified = bModified ? 1 : 0; }
- sal_Bool isReadOnly() const
+ bool isReadOnly() const
{ return m_pRegistry->isReadOnly(); }
sal_uInt32 countSubKeys();