summaryrefslogtreecommitdiff
path: root/registry
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-05-14 14:46:33 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-05-14 20:17:14 +0900
commit1136925b2377925e4f6b83c4aeb2374e1d5bf32f (patch)
tree209f88ba43096b0a629759965e0d4bb82f52173b /registry
parent9febe2cc5000046bf49b973efb3970013a5b84e1 (diff)
initialized with plain 0, instead of sal_False/false
Change-Id: I2df1bd52293c4423de5ac4c41f9392be1e8d2ccf
Diffstat (limited to 'registry')
-rw-r--r--registry/source/reflread.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/registry/source/reflread.cxx b/registry/source/reflread.cxx
index 62bfaa913e83..64e1de75460e 100644
--- a/registry/source/reflread.cxx
+++ b/registry/source/reflread.cxx
@@ -376,7 +376,7 @@ sal_Int8 ConstantPool::readBYTEConstant(sal_uInt16 index)
sal_Int16 ConstantPool::readINT16Constant(sal_uInt16 index)
{
- sal_Int16 aINT16 = sal_False;
+ sal_Int16 aINT16 = 0;
if (m_pIndex && (index> 0) && (index <= m_numOfEntries))
{
@@ -391,7 +391,7 @@ sal_Int16 ConstantPool::readINT16Constant(sal_uInt16 index)
sal_uInt16 ConstantPool::readUINT16Constant(sal_uInt16 index)
{
- sal_uInt16 asal_uInt16 = sal_False;
+ sal_uInt16 asal_uInt16 = 0;
if (m_pIndex && (index> 0) && (index <= m_numOfEntries))
{
@@ -406,7 +406,7 @@ sal_uInt16 ConstantPool::readUINT16Constant(sal_uInt16 index)
sal_Int32 ConstantPool::readINT32Constant(sal_uInt16 index)
{
- sal_Int32 aINT32 = sal_False;
+ sal_Int32 aINT32 = 0;
if (m_pIndex && (index> 0) && (index <= m_numOfEntries))
{
@@ -421,7 +421,7 @@ sal_Int32 ConstantPool::readINT32Constant(sal_uInt16 index)
sal_uInt32 ConstantPool::readUINT32Constant(sal_uInt16 index)
{
- sal_uInt32 aUINT32 = sal_False;
+ sal_uInt32 aUINT32 = 0;
if (m_pIndex && (index> 0) && (index <= m_numOfEntries))
{
@@ -436,7 +436,7 @@ sal_uInt32 ConstantPool::readUINT32Constant(sal_uInt16 index)
sal_Int64 ConstantPool::readINT64Constant(sal_uInt16 index)
{
- sal_Int64 aINT64 = sal_False;
+ sal_Int64 aINT64 = 0;
if (m_pIndex && (index> 0) && (index <= m_numOfEntries))
{
@@ -451,7 +451,7 @@ sal_Int64 ConstantPool::readINT64Constant(sal_uInt16 index)
sal_uInt64 ConstantPool::readUINT64Constant(sal_uInt16 index)
{
- sal_uInt64 aUINT64 = sal_False;
+ sal_uInt64 aUINT64 = 0;
if (m_pIndex && (index> 0) && (index <= m_numOfEntries))
{