diff options
Diffstat (limited to 'framework/inc/classes/propertysethelper.hxx')
-rw-r--r-- | framework/inc/classes/propertysethelper.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/inc/classes/propertysethelper.hxx b/framework/inc/classes/propertysethelper.hxx index 2dadf978f1e0..f6c23546a3af 100644 --- a/framework/inc/classes/propertysethelper.hxx +++ b/framework/inc/classes/propertysethelper.hxx @@ -60,7 +60,7 @@ class FWI_DLLPUBLIC PropertySetHelper : public css::beans::XPropertySet ListenerHash m_lSimpleChangeListener; ListenerHash m_lVetoChangeListener; - sal_Bool m_bReleaseLockOnCall; + bool m_bReleaseLockOnCall; // hold it weak ... otherwise this helper has to be "killed" explicitly .-) css::uno::WeakReference< css::uno::XInterface > m_xBroadcaster; @@ -82,7 +82,7 @@ class FWI_DLLPUBLIC PropertySetHelper : public css::beans::XPropertySet */ PropertySetHelper( osl::Mutex & mutex, TransactionManager* pExternalTransactionManager , - sal_Bool bReleaseLockOnCall ); + bool bReleaseLockOnCall ); /** free all needed memory. */ @@ -200,7 +200,7 @@ class FWI_DLLPUBLIC PropertySetHelper : public css::beans::XPropertySet /* internal helper */ private: - sal_Bool impl_existsVeto(const css::beans::PropertyChangeEvent& aEvent); + bool impl_existsVeto(const css::beans::PropertyChangeEvent& aEvent); void impl_notifyChangeListener(const css::beans::PropertyChangeEvent& aEvent); }; |