summaryrefslogtreecommitdiff
path: root/chart2/source/inc/LifeTime.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-06-11 13:59:16 +0000
committerOliver Bolte <obo@openoffice.org>2007-06-11 13:59:16 +0000
commit3dd5002efb422ae2430efdff0b2fccc591a8af0e (patch)
tree429401c7f2178bd41c349f8a4054334981f677b7 /chart2/source/inc/LifeTime.hxx
parent2ed35defd7a707dbd1dd4d97c177a7065e98d769 (diff)
INTEGRATION: CWS chart05 (1.4.2); FILE MERGED
2007/05/29 10:01:11 bm 1.4.2.1: #i77447# member order changed so that mutex is created before passed as parameter to other CTOR
Diffstat (limited to 'chart2/source/inc/LifeTime.hxx')
-rw-r--r--chart2/source/inc/LifeTime.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/inc/LifeTime.hxx b/chart2/source/inc/LifeTime.hxx
index e40e29a9a04b..374ce7b60631 100644
--- a/chart2/source/inc/LifeTime.hxx
+++ b/chart2/source/inc/LifeTime.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: LifeTime.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: vg $ $Date: 2007-05-22 18:18:35 $
+ * last change: $Author: obo $ $Date: 2007-06-11 14:59:16 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -67,6 +67,8 @@ class LifeTimeGuard;
class LifeTimeManager
{
friend class LifeTimeGuard;
+protected:
+ mutable ::osl::Mutex m_aAccessMutex;
public:
LifeTimeManager( ::com::sun::star::lang::XComponent* pComponent, sal_Bool bLongLastingCallsCancelable = sal_False );
virtual ~LifeTimeManager();
@@ -87,8 +89,6 @@ protected:
void impl_init();
protected:
- mutable ::osl::Mutex m_aAccessMutex;
-
::com::sun::star::lang::XComponent* m_pComponent;
::osl::Condition m_aNoAccessCountCondition;