From 4304947164bbcd3fea758df491a730b01d578be2 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 21 Jan 2022 09:10:08 +0200 Subject: fix opengl slide transition regression from commit 62efb188668a3296591dcfa3658185e2f982e356 use comphelper::WeakComponentImplHelper in SlideShowVie Switch notifyEach to leave the mutex locked after being called, because that seems to compose better - because after a call it is in the same state that was when we entered the call. Change-Id: I42e80cc7be1b65ed8cab24ab7c11210e056d916d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128723 Tested-by: Jenkins Reviewed-by: Noel Grandin --- ucbhelper/source/provider/resultset.cxx | 2 -- 1 file changed, 2 deletions(-) (limited to 'ucbhelper') diff --git a/ucbhelper/source/provider/resultset.cxx b/ucbhelper/source/provider/resultset.cxx index c3565b1179f0..bd253295cfda 100644 --- a/ucbhelper/source/provider/resultset.cxx +++ b/ucbhelper/source/provider/resultset.cxx @@ -241,7 +241,6 @@ void SAL_CALL ResultSet::dispose() lang::EventObject aEvt; aEvt.Source = static_cast< lang::XComponent * >( this ); m_pImpl->m_aDisposeEventListeners.disposeAndClear( aGuard, aEvt ); - aGuard.lock(); } if ( m_pImpl->m_pPropertyChangeListeners ) @@ -249,7 +248,6 @@ void SAL_CALL ResultSet::dispose() lang::EventObject aEvt; aEvt.Source = static_cast< beans::XPropertySet * >( this ); m_pImpl->m_pPropertyChangeListeners->disposeAndClear( aGuard, aEvt ); - aGuard.lock(); } m_pImpl->m_xDataSupplier->close(); -- cgit