summaryrefslogtreecommitdiff
path: root/comphelper/inc/comphelper/propmultiplex.hxx
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-05-31 12:54:33 +0000
committerFrank Schönheit <fs@openoffice.org>2001-05-31 12:54:33 +0000
commit2d0c00defa114bc51fa3dd7594835819a32f2bf3 (patch)
treedb0b04b5ab38e0eff75353c692bb2e851d50b5d4 /comphelper/inc/comphelper/propmultiplex.hxx
parente6e527d44ba500a711ac130f6db77dd0f842c177 (diff)
#87149# additional paramater, allowing to not release the set automatically
Diffstat (limited to 'comphelper/inc/comphelper/propmultiplex.hxx')
-rw-r--r--comphelper/inc/comphelper/propmultiplex.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/comphelper/inc/comphelper/propmultiplex.hxx b/comphelper/inc/comphelper/propmultiplex.hxx
index 84bf363f044e..046a0d5196ae 100644
--- a/comphelper/inc/comphelper/propmultiplex.hxx
+++ b/comphelper/inc/comphelper/propmultiplex.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propmultiplex.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: fs $ $Date: 2001-01-08 10:31:13 $
+ * last change: $Author: fs $ $Date: 2001-05-31 13:54:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -112,11 +112,13 @@ namespace comphelper
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet> m_xSet;
OPropertyChangeListener* m_pListener;
sal_Int32 m_nLockCount;
+ sal_Bool m_bListening : 1;
+ sal_Bool m_bAutoSetRelease : 1;
virtual ~OPropertyChangeMultiplexer();
public:
- OPropertyChangeMultiplexer(OPropertyChangeListener* _pListener, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet>& _rxSet);
+ OPropertyChangeMultiplexer(OPropertyChangeListener* _pListener, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet>& _rxSet, sal_Bool _bAutoReleaseSet = sal_True);
// XEventListener
virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw( ::com::sun::star::uno::RuntimeException);