summaryrefslogtreecommitdiff
path: root/comphelper/source/property/propertysetinfo.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/property/propertysetinfo.cxx')
-rw-r--r--comphelper/source/property/propertysetinfo.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/property/propertysetinfo.cxx b/comphelper/source/property/propertysetinfo.cxx
index cc4984122054..4e6a0e977892 100644
--- a/comphelper/source/property/propertysetinfo.cxx
+++ b/comphelper/source/property/propertysetinfo.cxx
@@ -43,7 +43,7 @@ public:
const PropertyMap* getPropertyMap() const throw();
Property getPropertyByName( const OUString& aName ) throw( UnknownPropertyException );
- sal_Bool hasPropertyByName( const OUString& aName ) throw();
+ bool hasPropertyByName( const OUString& aName ) throw();
private:
PropertyMap maPropertyMap;
@@ -138,7 +138,7 @@ Property PropertyMapImpl::getPropertyByName( const OUString& aName ) throw( Unkn
return Property( aName, pEntry->mnHandle, pEntry->maType, pEntry->mnAttributes );
}
-sal_Bool PropertyMapImpl::hasPropertyByName( const OUString& aName ) throw()
+bool PropertyMapImpl::hasPropertyByName( const OUString& aName ) throw()
{
return maPropertyMap.find( aName ) != maPropertyMap.end();
}