summaryrefslogtreecommitdiff
path: root/chart2/source/model/main/FormattedString.cxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2008-01-14 13:01:01 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2008-01-14 13:01:01 +0000
commit5b7915232b1fc542e7ece4c4d240db66e12e5937 (patch)
treed1298bdbb0c53b361a8dc96d36d2574eef6b60ec /chart2/source/model/main/FormattedString.cxx
parent5f892518ccb4ccef2cccf88250c3f8a9ac537a17 (diff)
INTEGRATION: CWS chart15 (1.7.22); FILE MERGED
2007/12/03 15:50:05 bm 1.7.22.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed
Diffstat (limited to 'chart2/source/model/main/FormattedString.cxx')
-rw-r--r--chart2/source/model/main/FormattedString.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/chart2/source/model/main/FormattedString.cxx b/chart2/source/model/main/FormattedString.cxx
index 435c411e22af..57e2bab1595f 100644
--- a/chart2/source/model/main/FormattedString.cxx
+++ b/chart2/source/model/main/FormattedString.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: FormattedString.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2007-07-25 08:50:12 $
+ * last change: $Author: ihi $ $Date: 2008-01-14 14:01:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -98,14 +98,14 @@ namespace chart
FormattedString::FormattedString( const ::rtl::OUString & rString ) :
::property::OPropertySet( m_aMutex ),
m_aString( rString ),
- m_xModifyEventForwarder( new ModifyListenerHelper::ModifyEventForwarder( m_aMutex ))
+ m_xModifyEventForwarder( new ModifyListenerHelper::ModifyEventForwarder())
{}
FormattedString::FormattedString(
uno::Reference< uno::XComponentContext > const & /* xContext */ ) :
::property::OPropertySet( m_aMutex ),
m_aString(),
- m_xModifyEventForwarder( new ModifyListenerHelper::ModifyEventForwarder( m_aMutex ))
+ m_xModifyEventForwarder( new ModifyListenerHelper::ModifyEventForwarder())
{}
FormattedString::FormattedString( const FormattedString & rOther ) :
@@ -113,7 +113,7 @@ FormattedString::FormattedString( const FormattedString & rOther ) :
impl::FormattedString_Base(),
::property::OPropertySet( rOther, m_aMutex ),
m_aString( rOther.m_aString ),
- m_xModifyEventForwarder( new ModifyListenerHelper::ModifyEventForwarder( m_aMutex ))
+ m_xModifyEventForwarder( new ModifyListenerHelper::ModifyEventForwarder())
{}
FormattedString::~FormattedString()