diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:00:06 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:22 +0100 |
commit | 48fc43550abb5fa62abef5b3fc977e24d0ab56f0 (patch) | |
tree | 76bb60e34fdd40a057fb8b9bbd6d05bd48767fbd /stoc/source/inspect | |
parent | 6f607b53857a67375f9da1d7d0fb0893545188c8 (diff) |
bool improvements
Change-Id: Ic29ea184cb40f6f49313ac2ff1abb4a37246d5bd
Diffstat (limited to 'stoc/source/inspect')
-rw-r--r-- | stoc/source/inspect/introspection.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stoc/source/inspect/introspection.cxx b/stoc/source/inspect/introspection.cxx index 2ca6beb1e8a9..7cd15a7f0eed 100644 --- a/stoc/source/inspect/introspection.cxx +++ b/stoc/source/inspect/introspection.cxx @@ -1471,12 +1471,12 @@ struct hashIntrospectionAccessCache_Impl { if( rObj1.xPropInfo != rObj2.xPropInfo || rObj1.xImplClass != rObj2.xImplClass ) - return sal_False; + return false; sal_Int32 nCount1 = rObj1.aIdlClasses.getLength(); sal_Int32 nCount2 = rObj2.aIdlClasses.getLength(); if( nCount1 != nCount2 ) - return sal_False; + return false; const Reference<XIdlClass>* pRefs1 = rObj1.aIdlClasses.getConstArray(); const Reference<XIdlClass>* pRefs2 = rObj2.aIdlClasses.getConstArray(); @@ -1525,7 +1525,7 @@ struct TypeProviderAccessCache_Impl const hashTypeProviderKey_Impl & rObj2 ) const { if( rObj1.xPropInfo != rObj2.xPropInfo ) - return sal_False; + return false; bool bEqual = false; sal_Int32 nLen1 = rObj1.maImpIdSeq.getLength(); |