diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-12-24 15:58:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-25 13:56:27 +0100 |
commit | c68c744b68fd50adb6ce725bf9de377a5f915dab (patch) | |
tree | a672de5b952dd8982951c90d791075dd213fab77 /accessibility/source/extended | |
parent | f0c0c62c10e4ffdb9ce44202e2540d2f39a9fcb5 (diff) |
pass unique_lock as param in WeakComponentImplHelperBase::disposing
so that subclasses can drop the lock while calling listeners
Change-Id: I6105438110af08f10b0ed50057b28172c3442b95
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127434
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'accessibility/source/extended')
-rw-r--r-- | accessibility/source/extended/accessibleeditbrowseboxcell.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accessibility/source/extended/accessibleeditbrowseboxcell.cxx b/accessibility/source/extended/accessibleeditbrowseboxcell.cxx index f9985e48a268..a582defcadd6 100644 --- a/accessibility/source/extended/accessibleeditbrowseboxcell.cxx +++ b/accessibility/source/extended/accessibleeditbrowseboxcell.cxx @@ -212,7 +212,7 @@ namespace accessibility return xMyContext; } - void EditBrowseBoxTableCellAccess::disposing() + void EditBrowseBoxTableCellAccess::disposing(std::unique_lock<std::mutex>&) { // dispose our context, if it still alive css::uno::Reference< XComponent > xMyContext( m_aContext.get(), UNO_QUERY ); |