summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-02-27 09:20:31 +0000
committerOliver Bolte <obo@openoffice.org>2008-02-27 09:20:31 +0000
commit2fe6a4a34b38c05e252c71f4d2f18e4a90e61b29 (patch)
tree84c22f79bc5511a889cc7451b7c858655d151213 /basic
parent2771561ccad0945fc1c682be3485c7d11de24964 (diff)
INTEGRATION: CWS jl92_DEV300 (1.10.80); FILE MERGED
2008/02/25 16:08:12 jl 1.10.80.1: #i86424# removing lock use of solar mutex, it is not necessary here and may cause deadlocks
Diffstat (limited to 'basic')
-rw-r--r--basic/source/uno/namecont.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/basic/source/uno/namecont.cxx b/basic/source/uno/namecont.cxx
index 2366b9189778..2e2242c8547c 100644
--- a/basic/source/uno/namecont.cxx
+++ b/basic/source/uno/namecont.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: namecont.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: hr $ $Date: 2007-06-27 14:33:56 $
+ * last change: $Author: obo $ $Date: 2008-02-27 10:20:31 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -437,7 +437,6 @@ void SfxLibraryContainer::checkDisposed() const
void SfxLibraryContainer::enterMethod()
{
- Application::GetSolarMutex().acquire();
maMutex.acquire();
checkDisposed();
}
@@ -445,7 +444,6 @@ void SfxLibraryContainer::enterMethod()
void SfxLibraryContainer::leaveMethod()
{
maMutex.release();
- Application::GetSolarMutex().release();
}
BasicManager* SfxLibraryContainer::getBasicManager( void )