diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 19:58:40 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:18 +0100 |
commit | fa189d7447a602d1ba3310603a63df582d01bd72 (patch) | |
tree | 9863e9380396626c7b12144fccbff67da7a27ffd /include | |
parent | 9d1c20259f08cd798a2f197a7ecef1bf6382be3f (diff) |
bool improvements
Change-Id: I238ab0ebe54cc804c85356a3de9fbdcc396057d3
Diffstat (limited to 'include')
-rw-r--r-- | include/xmloff/PropertySetInfoHash.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xmloff/PropertySetInfoHash.hxx b/include/xmloff/PropertySetInfoHash.hxx index 4ed9c3dc7f29..4f987ca8e424 100644 --- a/include/xmloff/PropertySetInfoHash.hxx +++ b/include/xmloff/PropertySetInfoHash.hxx @@ -48,7 +48,7 @@ inline bool PropertySetInfoHash::operator()( const PropertySetInfoKey& r2 ) const { if( r1.xPropInfo != r2.xPropInfo ) - return sal_False; + return false; const sal_Int8* pId1 = r1.aImplementationId.getConstArray(); const sal_Int8* pId2 = r2.aImplementationId.getConstArray(); |