diff options
author | Frank Schönheit <fs@openoffice.org> | 2001-03-29 12:39:32 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2001-03-29 12:39:32 +0000 |
commit | ee4ee17b8473167d7a18745ec53e711b6bcc2d82 (patch) | |
tree | 3ec5f2b699877fe44d91ad5d97b613fd5e68d9a0 /svx/source/fmcomp | |
parent | 0a395927f9e4b21f901522380d4e7734d22292a7 (diff) |
#85476# own helper class holding a mutex for the OPropertyChangeListener-derived classes
Diffstat (limited to 'svx/source/fmcomp')
-rw-r--r-- | svx/source/fmcomp/gridcell.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/fmcomp/gridcell.cxx b/svx/source/fmcomp/gridcell.cxx index c67341a39ba9..cbfa8943cd1a 100644 --- a/svx/source/fmcomp/gridcell.cxx +++ b/svx/source/fmcomp/gridcell.cxx @@ -2,9 +2,9 @@ * * $RCSfile: gridcell.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: fs $ $Date: 2001-03-15 08:58:26 $ + * last change: $Author: fs $ $Date: 2001-03-29 13:39:32 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -764,7 +764,7 @@ DBG_NAME(DbFormattedField); //------------------------------------------------------------------------------ DbFormattedField::DbFormattedField(DbGridColumn& _rColumn) :DbCellControl(_rColumn) - ,OPropertyChangeListener(m_aDummy) + ,OPropertyChangeListener(m_aMutex) ,m_nKeyType(::com::sun::star::util::NumberFormat::UNDEFINED) { DBG_CTOR(DbFormattedField,NULL); @@ -1697,7 +1697,7 @@ sal_Bool DbTimeField::Commit() //------------------------------------------------------------------------------ DbComboBox::DbComboBox(DbGridColumn& _rColumn) :DbCellControl(_rColumn) - ,OPropertyChangeListener(m_aDummy) + ,OPropertyChangeListener(m_aMutex) ,m_nKeyType(::com::sun::star::util::NumberFormat::UNDEFINED) { m_bAlignedController = sal_False; @@ -1801,7 +1801,7 @@ sal_Bool DbComboBox::Commit() //------------------------------------------------------------------------------ DbListBox::DbListBox(DbGridColumn& _rColumn) :DbCellControl(_rColumn) - ,OPropertyChangeListener(m_aDummy) + ,OPropertyChangeListener(m_aMutex) ,m_bBound(sal_False) { m_bAlignedController = sal_False; |