avmedia/source/viewer/mediaevent_impl.cxx |    5 -----
 1 file changed, 5 deletions(-)

New commits:
commit dc873abca8fa070cd50f82b640a425ffbb651f2b
Author:     Noel Grandin <noel.gran...@collabora.co.uk>
AuthorDate: Tue Dec 21 10:16:39 2021 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Tue Dec 21 10:09:12 2021 +0100

    no need to take solar mutex here
    
    Application: :Post* will already do that
    Change-Id: If116ddd79b4ba30ce983d467161b8fab32dbd1cd
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127214
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/avmedia/source/viewer/mediaevent_impl.cxx 
b/avmedia/source/viewer/mediaevent_impl.cxx
index 23a5bc3daa75..62217f6d9473 100644
--- a/avmedia/source/viewer/mediaevent_impl.cxx
+++ b/avmedia/source/viewer/mediaevent_impl.cxx
@@ -53,7 +53,6 @@ void SAL_CALL MediaEventListenersImpl::disposing( const 
css::lang::EventObject&
 void SAL_CALL MediaEventListenersImpl::keyPressed( const css::awt::KeyEvent& e 
)
 {
     const ::osl::MutexGuard aGuard( maMutex );
-    const SolarMutexGuard aAppGuard;
 
     if( mpNotifyWindow )
     {
@@ -71,7 +70,6 @@ void SAL_CALL MediaEventListenersImpl::keyPressed( const 
css::awt::KeyEvent& e )
 void SAL_CALL MediaEventListenersImpl::keyReleased( const css::awt::KeyEvent& 
e )
 {
     const ::osl::MutexGuard aGuard( maMutex );
-    const SolarMutexGuard aAppGuard;
 
     if( mpNotifyWindow )
     {
@@ -88,7 +86,6 @@ void SAL_CALL MediaEventListenersImpl::keyReleased( const 
css::awt::KeyEvent& e
 void SAL_CALL MediaEventListenersImpl::mousePressed( const 
css::awt::MouseEvent& e )
 {
     const ::osl::MutexGuard aGuard( maMutex );
-    const SolarMutexGuard aAppGuard;
 
     if( mpNotifyWindow )
     {
@@ -136,7 +133,6 @@ void SAL_CALL MediaEventListenersImpl::mouseExited( const 
css::awt::MouseEvent&
 void SAL_CALL MediaEventListenersImpl::mouseDragged( const 
css::awt::MouseEvent& e )
 {
     const ::osl::MutexGuard aGuard( maMutex );
-    const SolarMutexGuard aAppGuard;
 
     if( mpNotifyWindow )
     {
@@ -149,7 +145,6 @@ void SAL_CALL MediaEventListenersImpl::mouseDragged( const 
css::awt::MouseEvent&
 void SAL_CALL MediaEventListenersImpl::mouseMoved( const css::awt::MouseEvent& 
e )
 {
     const ::osl::MutexGuard aGuard( maMutex );
-    const SolarMutexGuard aAppGuard;
 
     if( mpNotifyWindow )
     {

Reply via email to