summaryrefslogtreecommitdiff
path: root/include/registry/reflread.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 /include/registry/reflread.hxx
parent07d3807e999445c87553e7a6c5876d07ca431737 (diff)
registry: sal_Bool -> bool
Change-Id: Iaf118eca7a7b24945afbc1959ad78c712e4a299b
Diffstat (limited to 'include/registry/reflread.hxx')
-rw-r--r--include/registry/reflread.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/registry/reflread.hxx b/include/registry/reflread.hxx
index b044bb75011f..a26df02ecd3c 100644
--- a/include/registry/reflread.hxx
+++ b/include/registry/reflread.hxx
@@ -112,7 +112,7 @@ public:
*/
inline RegistryTypeReader(const sal_uInt8* buffer,
sal_uInt32 bufferLen,
- sal_Bool copyData);
+ bool copyData);
/// Copy constructcor
inline RegistryTypeReader(const RegistryTypeReader& toCopy);
@@ -124,7 +124,7 @@ public:
inline RegistryTypeReader& operator == (const RegistryTypeReader& toAssign);
/// checks if the registry type reader points to a valid Api.
- inline sal_Bool isValid() const;
+ inline bool isValid() const;
/** @deprecated
returns the minor version number.
@@ -315,7 +315,7 @@ protected:
inline RegistryTypeReader::RegistryTypeReader(const sal_uInt8* buffer,
sal_uInt32 bufferLen,
- sal_Bool copyData)
+ bool copyData)
: m_pApi(initRegistryTypeReader_Api())
, m_hImpl(NULL)
{
@@ -347,7 +347,7 @@ inline RegistryTypeReader& RegistryTypeReader::operator == (const RegistryTypeRe
inline sal_uInt16 RegistryTypeReader::getMinorVersion() const
{ return m_pApi->getMinorVersion(m_hImpl); }
-inline sal_Bool RegistryTypeReader::isValid() const
+inline bool RegistryTypeReader::isValid() const
{ return (m_hImpl != NULL); }
inline sal_uInt16 RegistryTypeReader::getMajorVersion() const