diff options
author | Noel Grandin <noel@peralex.com> | 2012-09-25 15:11:54 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-10-04 21:29:32 +0200 |
commit | 414ac85bfee7d034668e954e0f68751852c24062 (patch) | |
tree | 3a01f2612d775c1b1c389df765d6a64681515023 /comphelper/source | |
parent | 5a651522acb42fcffa6defc212cb8d0e9b9b7d3f (diff) |
sal_Bool -> bool in comphelper
Change-Id: Id9f4aef6c7453cebd83dcaedf2ad7427e03cc960
Diffstat (limited to 'comphelper/source')
-rw-r--r-- | comphelper/source/property/propagg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/property/propagg.cxx b/comphelper/source/property/propagg.cxx index a2d9ff08cebc..bc24d9499527 100644 --- a/comphelper/source/property/propagg.cxx +++ b/comphelper/source/property/propagg.cxx @@ -226,11 +226,11 @@ sal_Bool OPropertyArrayAggregationHelper::getPropertyByHandle( sal_Int32 _nHandl } //------------------------------------------------------------------------------ -sal_Bool OPropertyArrayAggregationHelper::fillAggregatePropertyInfoByHandle( +bool OPropertyArrayAggregationHelper::fillAggregatePropertyInfoByHandle( ::rtl::OUString* _pPropName, sal_Int32* _pOriginalHandle, sal_Int32 _nHandle) const { ConstPropertyAccessorMapIterator i = m_aPropertyAccessors.find(_nHandle); - sal_Bool bRet = i != m_aPropertyAccessors.end() && (*i).second.bAggregate; + bool bRet = i != m_aPropertyAccessors.end() && (*i).second.bAggregate; if (bRet) { if (_pOriginalHandle) |