summaryrefslogtreecommitdiff
path: root/registry/source/reflread.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-09-25 17:11:17 +0200
committerMichael Stahl <mstahl@redhat.com>2012-10-04 21:29:34 +0200
commitab7bc4f4c29dbeb206098b5a7e56682834af04b0 (patch)
tree2b15aab1bcde37bfe41dbb1739d3bb3376bb96bd /registry/source/reflread.cxx
parent2765cf0ca81b606f169d8ec723d41d509f336628 (diff)
sal_Bool->bool in registry
Change-Id: I6afabf33e1d1ab890c979193c25381e0d38c1f50
Diffstat (limited to 'registry/source/reflread.cxx')
-rw-r--r--registry/source/reflread.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/registry/source/reflread.cxx b/registry/source/reflread.cxx
index 3c103c23a344..e51178867671 100644
--- a/registry/source/reflread.cxx
+++ b/registry/source/reflread.cxx
@@ -53,9 +53,9 @@ class BlopObject
public:
const sal_uInt8* m_pBuffer;
sal_uInt32 m_bufferLen;
- sal_Bool m_isCopied;
+ bool m_isCopied;
- BlopObject(const sal_uInt8* buffer, sal_uInt32 len, sal_Bool copyBuffer);
+ BlopObject(const sal_uInt8* buffer, sal_uInt32 len, bool copyBuffer);
// throws std::bad_alloc
~BlopObject();
@@ -124,7 +124,7 @@ public:
}
};
-BlopObject::BlopObject(const sal_uInt8* buffer, sal_uInt32 len, sal_Bool copyBuffer)
+BlopObject::BlopObject(const sal_uInt8* buffer, sal_uInt32 len, bool copyBuffer)
: m_bufferLen(len)
, m_isCopied(copyBuffer)
{