diff options
author | Oliver Braun <obr@openoffice.org> | 2001-02-09 13:48:55 +0000 |
---|---|---|
committer | Oliver Braun <obr@openoffice.org> | 2001-02-09 13:48:55 +0000 |
commit | fcdbb2c98a07981cee87107a0cdba7c0719f74cc (patch) | |
tree | 5ea548861e1393f7357a02342f5fc1883f61a38b | |
parent | 3f005ff29aa312b2f369f952a0cc8c4a9ad341b6 (diff) |
use YieldMutexReleaser
-rw-r--r-- | vcl/unx/source/app/saldisp.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/vcl/unx/source/app/saldisp.cxx b/vcl/unx/source/app/saldisp.cxx index 2419ad04c235..973bf5e73b21 100644 --- a/vcl/unx/source/app/saldisp.cxx +++ b/vcl/unx/source/app/saldisp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: saldisp.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: pl $ $Date: 2001-02-01 14:08:06 $ + * last change: $Author: obr $ $Date: 2001-02-09 14:48:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2674,7 +2674,10 @@ final long SalDisplay::Dispatch( XEvent *pEvent ) // DtIntegrator::HandleXEvent( pEvent ); SalInstance* pInstance = GetSalData()->pFirstInstance_; if( pInstance->maInstData.mpEventCallback ) + { + YieldMutexReleaser aReleaser; pInstance->maInstData.mpEventCallback( pInstance->maInstData.mpEventInst, pEvent, sizeof( XEvent ) ); + } switch( pEvent->type ) { |