From 05f742d28b3786f44781af5b069c05c16b84decd Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sun, 16 Feb 2014 22:51:15 +0100 Subject: comphelper: sal_Bool -> bool Change-Id: I6fc331ae0706f4bb193543011c8d4ae0a385fcc0 --- include/comphelper/propertycontainerhelper.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/comphelper/propertycontainerhelper.hxx') diff --git a/include/comphelper/propertycontainerhelper.hxx b/include/comphelper/propertycontainerhelper.hxx index a70b73aea26c..821903de3639 100644 --- a/include/comphelper/propertycontainerhelper.hxx +++ b/include/comphelper/propertycontainerhelper.hxx @@ -85,7 +85,7 @@ private: typedef Properties::const_iterator ConstPropertiesIterator; Properties m_aProperties; - sal_Bool m_bUnused; + bool m_bUnused; protected: OPropertyContainerHelper(); @@ -139,14 +139,14 @@ protected: /// checkes whether a property with the given handle has been registered - sal_Bool isRegisteredProperty( sal_Int32 _nHandle ) const; + bool isRegisteredProperty( sal_Int32 _nHandle ) const; /// checkes whether a property with the given name has been registered - sal_Bool isRegisteredProperty( const OUString& _rName ) const; + bool isRegisteredProperty( const OUString& _rName ) const; // helper for implementing OPropertySetHelper overridables - sal_Bool convertFastPropertyValue( + bool convertFastPropertyValue( ::com::sun::star::uno::Any & rConvertedValue, ::com::sun::star::uno::Any & rOldValue, sal_Int32 nHandle, -- cgit