diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:00:53 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:24 +0100 |
commit | 9548c0bd597c1d5f1e5fde3118cb6905bd86bf6e (patch) | |
tree | 958b4dffd20417dab63c8d22de26d2577126b3a3 /registry/source/reflread.cxx | |
parent | 373de64a3613fc494e9315c083f950b48b6b985e (diff) |
bool improvements
Change-Id: I60fc93beb58c548c7278eaf69f1d0a448b5c27f1
Diffstat (limited to 'registry/source/reflread.cxx')
-rw-r--r-- | registry/source/reflread.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/registry/source/reflread.cxx b/registry/source/reflread.cxx index 8c88e05a7254..7fffd6e6ed1d 100644 --- a/registry/source/reflread.cxx +++ b/registry/source/reflread.cxx @@ -235,7 +235,7 @@ public: StringCache* m_pStringCache; ConstantPool(const sal_uInt8* buffer, sal_uInt16 numEntries) - : BlopObject(buffer, 0, sal_False) + : BlopObject(buffer, 0, false) , m_numOfEntries(numEntries) , m_pIndex(NULL) , m_pStringCache(NULL) @@ -582,7 +582,7 @@ public: ConstantPool* m_pCP; FieldList(const sal_uInt8* buffer, sal_uInt16 numEntries, ConstantPool* pCP) - : BlopObject(buffer, 0, sal_False) + : BlopObject(buffer, 0, false) , m_numOfEntries(numEntries) , m_pCP(pCP) { @@ -751,7 +751,7 @@ public: ConstantPool* m_pCP; ReferenceList(const sal_uInt8* buffer, sal_uInt16 numEntries, ConstantPool* pCP) - : BlopObject(buffer, 0, sal_False) + : BlopObject(buffer, 0, false) , m_numOfEntries(numEntries) , m_pCP(pCP) { @@ -845,7 +845,7 @@ public: ConstantPool* m_pCP; MethodList(const sal_uInt8* buffer, sal_uInt16 numEntries, ConstantPool* pCP) - : BlopObject(buffer, 0, sal_False) + : BlopObject(buffer, 0, false) , m_numOfEntries(numEntries) , m_pIndex(NULL) , m_pCP(pCP) |