summaryrefslogtreecommitdiff
path: root/svtools/source/misc/transfer2.cxx
diff options
context:
space:
mode:
authorjp <jp@openoffice.org>2001-03-22 17:09:25 +0000
committerjp <jp@openoffice.org>2001-03-22 17:09:25 +0000
commit16601701693b78f7edc6445feeb0c74fb17d302d (patch)
tree3401288c785863fdf3502be4f7bf6e3ae22fcf74 /svtools/source/misc/transfer2.cxx
parent9de4a25084bcad8eedbc59586cb1afcab96db245 (diff)
mutex for dragGestureRecognized
Diffstat (limited to 'svtools/source/misc/transfer2.cxx')
-rw-r--r--svtools/source/misc/transfer2.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/svtools/source/misc/transfer2.cxx b/svtools/source/misc/transfer2.cxx
index 7eabb8813dfb..18c77549f6f1 100644
--- a/svtools/source/misc/transfer2.cxx
+++ b/svtools/source/misc/transfer2.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: transfer2.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: jp $ $Date: 2001-03-22 13:35:54 $
+ * last change: $Author: jp $ $Date: 2001-03-22 18:09:25 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -134,6 +134,8 @@ void SAL_CALL DragSourceHelper::DragGestureListener::disposing( const EventObjec
void SAL_CALL DragSourceHelper::DragGestureListener::dragGestureRecognized( const DragGestureEvent& rDGE ) throw( RuntimeException )
{
+ const ::vos::OGuard aGuard( Application::GetSolarMutex() );
+
const Point aPtPixel( rDGE.DragOriginX, rDGE.DragOriginY );
mrParent.StartDrag( rDGE.DragAction, aPtPixel );
}