diff options
author | Mathias Bauer <mba@openoffice.org> | 2001-02-09 14:40:46 +0000 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2001-02-09 14:40:46 +0000 |
commit | bdc8ec306484355e8fae98d5abee0c38a630c3b5 (patch) | |
tree | 6d86c5652772b35121a104bad72a696995912aa4 /framework | |
parent | 24c241df92f5f22b3556b7dc6569e9e7888ce1d3 (diff) |
don't share mutex with DispatchHelper
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/services/frame.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx index ded411bcd2aa..a4055f36942f 100644 --- a/framework/source/services/frame.cxx +++ b/framework/source/services/frame.cxx @@ -2,9 +2,9 @@ * * $RCSfile: frame.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: mba $ $Date: 2001-02-09 15:39:56 $ + * last change: $Author: mba $ $Date: 2001-02-09 15:40:46 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -229,7 +229,7 @@ Frame::Frame( const Reference< XMultiServiceFactory >& xFactory ) // Initialize a new dispatchhelper-object to handle dispatches for SELF private and fast! // We use these helper as slave for our interceptor helper ... // (Attention: These helper hold a weakreference to us!) - ODispatchProvider* pDispatchHelper = new ODispatchProvider( m_xFactory, this, m_aMutex ); + ODispatchProvider* pDispatchHelper = new ODispatchProvider( m_xFactory, this ); // Initialize a new interception helper object to handle dispatches and interceptor mechanism PRIVATE! // These helper don't need any reference to use ... |