summaryrefslogtreecommitdiff
path: root/chart2/source/model/main/Axis.cxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2008-01-14 12:59:49 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2008-01-14 12:59:49 +0000
commitaaa63d5247202c7c6c751517e2a61173e0b4b8e1 (patch)
tree720d7bba40d4ae155b5924790ad1c087d0845fbb /chart2/source/model/main/Axis.cxx
parenta6aa8bfc4979cb1b81543f9814792f381d417bf7 (diff)
INTEGRATION: CWS chart15 (1.13.10); FILE MERGED
2007/12/03 15:50:05 bm 1.13.10.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed
Diffstat (limited to 'chart2/source/model/main/Axis.cxx')
-rw-r--r--chart2/source/model/main/Axis.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/model/main/Axis.cxx b/chart2/source/model/main/Axis.cxx
index f0d9fb9ab962..70b5a0d216b2 100644
--- a/chart2/source/model/main/Axis.cxx
+++ b/chart2/source/model/main/Axis.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: Axis.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: vg $ $Date: 2007-09-18 14:59:09 $
+ * last change: $Author: ihi $ $Date: 2008-01-14 13:59:49 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -311,7 +311,7 @@ namespace chart
Axis::Axis( Reference< uno::XComponentContext > const & /* xContext */ ) :
::property::OPropertySet( m_aMutex ),
- m_xModifyEventForwarder( new ModifyListenerHelper::ModifyEventForwarder( m_aMutex )),
+ m_xModifyEventForwarder( new ModifyListenerHelper::ModifyEventForwarder()),
m_aScaleData( AxisHelper::createDefaultScale() ),
m_xGrid( new GridProperties() ),
m_aSubGridProperties(),
@@ -332,7 +332,7 @@ Axis::Axis( const Axis & rOther ) :
MutexContainer(),
impl::Axis_Base(),
::property::OPropertySet( rOther, m_aMutex ),
- m_xModifyEventForwarder( new ModifyListenerHelper::ModifyEventForwarder( m_aMutex )),
+ m_xModifyEventForwarder( new ModifyListenerHelper::ModifyEventForwarder()),
m_aScaleData( rOther.m_aScaleData )
{
m_xGrid.set( CloneHelper::CreateRefClone< Reference< beans::XPropertySet > >()( rOther.m_xGrid ));