summaryrefslogtreecommitdiff
path: root/accessibility
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-16 08:44:45 +0200
committerEike Rathke <erack@redhat.com>2016-05-19 13:06:09 +0000
commita656be64e21fd0ec5e12d34a47e2daf777e04b9b (patch)
treef0e47200d04194bee9746ccb200c86e5726ea9a0 /accessibility
parent874431bcd18ea08269f03831486f3f3b749eee36 (diff)
clang-tidy misc-unused-raii
Change-Id: Id97291511efbaa304f25da3ae5700604b574d165 Reviewed-on: https://gerrit.libreoffice.org/25027 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'accessibility')
-rw-r--r--accessibility/source/extended/accessiblelistboxentry.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/accessibility/source/extended/accessiblelistboxentry.cxx b/accessibility/source/extended/accessiblelistboxentry.cxx
index 9abe4c779ff4..12af82ab3e8c 100644
--- a/accessibility/source/extended/accessiblelistboxentry.cxx
+++ b/accessibility/source/extended/accessiblelistboxentry.cxx
@@ -232,7 +232,7 @@ namespace accessibility
void SAL_CALL AccessibleListBoxEntry::disposing()
{
- SolarMutexGuard();
+ SolarMutexGuard aSolarGuard;
::osl::MutexGuard aGuard( m_aMutex );
Reference< XAccessible > xKeepAlive( this );