diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-21 10:16:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-21 10:09:12 +0100 |
commit | dc873abca8fa070cd50f82b640a425ffbb651f2b (patch) | |
tree | 104cfcf558f0dbe1b4438a5ff0cf6acad2e06140 | |
parent | 69fb0fb44d8d60d3bb550f0117f91f64b6194369 (diff) |
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.grandin@collabora.co.uk>
-rw-r--r-- | avmedia/source/viewer/mediaevent_impl.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
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 ) { |