From dc873abca8fa070cd50f82b640a425ffbb651f2b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 21 Dec 2021 10:16:39 +0200 Subject: 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 --- avmedia/source/viewer/mediaevent_impl.cxx | 5 ----- 1 file changed, 5 deletions(-) (limited to 'avmedia') 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 ) { -- cgit