diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-16 22:50:50 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 17:55:18 +0100 |
commit | faced6b5f72b096800a232749cce6b38a76d5bac (patch) | |
tree | d0fc963362301ef6d1eeedb7e6af1b05cd565c00 /include/ucbhelper/propertyvalueset.hxx | |
parent | 7f902e1697d077dd4a32846ff85f6134a556d528 (diff) |
ucbhelper: sal_Bool -> bool
Change-Id: Iee327c3dd75bebb35d99de01eaa7103956e08974
Diffstat (limited to 'include/ucbhelper/propertyvalueset.hxx')
-rw-r--r-- | include/ucbhelper/propertyvalueset.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/ucbhelper/propertyvalueset.hxx b/include/ucbhelper/propertyvalueset.hxx index 694fd41183b6..18663e332e08 100644 --- a/include/ucbhelper/propertyvalueset.hxx +++ b/include/ucbhelper/propertyvalueset.hxx @@ -64,8 +64,8 @@ class UCBHELPER_DLLPUBLIC PropertyValueSet : m_xTypeConverter; osl::Mutex m_aMutex; PropertyValues* m_pValues; - sal_Bool m_bWasNull; - sal_Bool m_bTriedToGetTypeConverter; + bool m_bWasNull; + bool m_bTriedToGetTypeConverter; private: UCBHELPER_DLLPRIVATE const com::sun::star::uno::Reference< @@ -194,12 +194,12 @@ public: appendString( rProp.Name, rValue ); } - void appendBoolean( const OUString& rPropName, sal_Bool bValue ); - void appendBoolean( const sal_Char* pAsciiPropName, sal_Bool bValue ) + void appendBoolean( const OUString& rPropName, bool bValue ); + void appendBoolean( const sal_Char* pAsciiPropName, bool bValue ) { appendBoolean( OUString::createFromAscii( pAsciiPropName ), bValue ); } - void appendBoolean( const ::com::sun::star::beans::Property& rProp, sal_Bool bValue ) + void appendBoolean( const ::com::sun::star::beans::Property& rProp, bool bValue ) { appendBoolean( rProp.Name, bValue ); } @@ -262,7 +262,7 @@ public: * @return False, if the property value cannot be obtained from the * given property pet. True, otherwise. */ - sal_Bool appendPropertySetValue( + bool appendPropertySetValue( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& rSet, const ::com::sun::star::beans::Property& rProperty ); |