summaryrefslogtreecommitdiff
path: root/svtools/source/misc/transfer.cxx
diff options
context:
space:
mode:
authorKai Ahrens <ka@openoffice.org>2001-11-05 12:01:21 +0000
committerKai Ahrens <ka@openoffice.org>2001-11-05 12:01:21 +0000
commit8e346c5e56e94a658b9708f28894db02a843f491 (patch)
tree4da8dd313c421021745ad0d88251290e28834fe0 /svtools/source/misc/transfer.cxx
parent055589cb7fb03ca244de21e1717c62518e7927c6 (diff)
#94171#: don't release solar mutex in ::GetAny of TransferableHelper
Diffstat (limited to 'svtools/source/misc/transfer.cxx')
-rw-r--r--svtools/source/misc/transfer.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/svtools/source/misc/transfer.cxx b/svtools/source/misc/transfer.cxx
index bc4a1e9309da..758a8160ff84 100644
--- a/svtools/source/misc/transfer.cxx
+++ b/svtools/source/misc/transfer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: transfer.cxx,v $
*
- * $Revision: 1.52 $
+ * $Revision: 1.53 $
*
- * last change: $Author: ka $ $Date: 2001-10-18 13:23:27 $
+ * last change: $Author: ka $ $Date: 2001-11-05 13:01:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1309,8 +1309,7 @@ Reference< XTransferable > TransferableDataHelper::GetXTransferable() const
Any TransferableDataHelper::GetAny( const DataFlavor& rFlavor ) const
{
- Any aRet;
- const sal_uInt32 nRef = Application::ReleaseSolarMutex();
+ Any aRet;
try
{
@@ -1342,8 +1341,6 @@ Any TransferableDataHelper::GetAny( const DataFlavor& rFlavor ) const
{
}
- Application::AcquireSolarMutex( nRef );
-
return aRet;
}