summaryrefslogtreecommitdiff
path: root/include/comphelper/propertycontainerhelper.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-16 22:51:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-17 17:55:19 +0100
commit05f742d28b3786f44781af5b069c05c16b84decd (patch)
treedacb340f99ad4e47d20557eee04e6f69f5d15721 /include/comphelper/propertycontainerhelper.hxx
parentfaced6b5f72b096800a232749cce6b38a76d5bac (diff)
comphelper: sal_Bool -> bool
Change-Id: I6fc331ae0706f4bb193543011c8d4ae0a385fcc0
Diffstat (limited to 'include/comphelper/propertycontainerhelper.hxx')
-rw-r--r--include/comphelper/propertycontainerhelper.hxx8
1 files changed, 4 insertions, 4 deletions
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,