summaryrefslogtreecommitdiff
path: root/svx/source/accessibility/ChildrenManagerImpl.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-12-24 12:00:57 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-12-24 17:57:41 +0100
commita3af03ec84ff5e8a89ccfa6fb2350eec6f09883c (patch)
treea5e9b388bb40bb74c849ce7c40bca3abe2fb6a99 /svx/source/accessibility/ChildrenManagerImpl.cxx
parentc55d1affc6299feed36145a01279b641bb60ac57 (diff)
use comphelper::WeakComponentImplHelper in ChildrenManagerImpl
Change-Id: I24b1f497a77b7ff896060a8f7dacc5d3a5e27ea2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127411 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/accessibility/ChildrenManagerImpl.cxx')
-rw-r--r--svx/source/accessibility/ChildrenManagerImpl.cxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/svx/source/accessibility/ChildrenManagerImpl.cxx b/svx/source/accessibility/ChildrenManagerImpl.cxx
index 2b8f5674b0d9..080d2a204b9d 100644
--- a/svx/source/accessibility/ChildrenManagerImpl.cxx
+++ b/svx/source/accessibility/ChildrenManagerImpl.cxx
@@ -69,10 +69,7 @@ ChildrenManagerImpl::ChildrenManagerImpl (
const uno::Reference<drawing::XShapes>& rxShapeList,
const AccessibleShapeTreeInfo& rShapeTreeInfo,
AccessibleContextBase& rContext)
- : ::cppu::WeakComponentImplHelper<
- css::document::XEventListener,
- css::view::XSelectionChangeListener>(m_aMutex),
- mxShapeList (rxShapeList),
+ : mxShapeList (rxShapeList),
mxParent (rxParent),
maShapeTreeInfo (rShapeTreeInfo),
mrContext (rContext),
@@ -83,8 +80,7 @@ ChildrenManagerImpl::ChildrenManagerImpl (
ChildrenManagerImpl::~ChildrenManagerImpl()
{
- DBG_ASSERT (rBHelper.bDisposed || rBHelper.bInDispose,
- "~AccessibleDrawDocumentView: object has not been disposed");
+ DBG_ASSERT (m_bDisposed, "~AccessibleDrawDocumentView: object has not been disposed");
}
@@ -694,7 +690,7 @@ void ChildrenManagerImpl::impl_dispose()
}
-void SAL_CALL ChildrenManagerImpl::disposing()
+void ChildrenManagerImpl::disposing()
{
impl_dispose();
}