diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-12-17 22:42:53 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-19 11:19:12 +0100 |
commit | 3152f5a33e787e33ec0dfef8c75d7bbf95194c00 (patch) | |
tree | cc1049cdf9424a5891ca5e255374ef9ca0ff57f5 /svx | |
parent | 729834abac1618aa2f0dcc6d774deb74f7c42bb3 (diff) |
use more cppu::BaseMutex
Change-Id: Iddd7438161ead93b27cf8e8058ca5b1eae3d8001
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127075
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/inc/AccessibleTableShape.hxx | 2 | ||||
-rw-r--r-- | svx/source/accessibility/AccessibleControlShape.cxx | 4 | ||||
-rw-r--r-- | svx/source/accessibility/AccessibleShape.cxx | 12 | ||||
-rw-r--r-- | svx/source/accessibility/ChildrenManagerImpl.cxx | 2 | ||||
-rw-r--r-- | svx/source/accessibility/ChildrenManagerImpl.hxx | 2 | ||||
-rw-r--r-- | svx/source/table/accessiblecell.cxx | 10 |
6 files changed, 16 insertions, 16 deletions
diff --git a/svx/inc/AccessibleTableShape.hxx b/svx/inc/AccessibleTableShape.hxx index 6fe03c15363b..16dcf4fe38ae 100644 --- a/svx/inc/AccessibleTableShape.hxx +++ b/svx/inc/AccessibleTableShape.hxx @@ -142,7 +142,7 @@ typedef ::cppu::WeakImplHelper< css::accessibility::XAccessibleTableSelection > AccessibleTableHeaderShape_BASE; -class AccessibleTableHeaderShape final : public MutexOwner, +class AccessibleTableHeaderShape final : public cppu::BaseMutex, public AccessibleTableHeaderShape_BASE { public: diff --git a/svx/source/accessibility/AccessibleControlShape.cxx b/svx/source/accessibility/AccessibleControlShape.cxx index f2714a8ab9b0..79abed1a0d1a 100644 --- a/svx/source/accessibility/AccessibleControlShape.cxx +++ b/svx/source/accessibility/AccessibleControlShape.cxx @@ -357,7 +357,7 @@ IMPLEMENT_GET_IMPLEMENTATION_ID( AccessibleControlShape ) void SAL_CALL AccessibleControlShape::propertyChange( const PropertyChangeEvent& _rEvent ) { - ::osl::MutexGuard aGuard( maMutex ); + ::osl::MutexGuard aGuard( m_aMutex ); // check if it is the name or the description if ( _rEvent.PropertyName == lcl_getNamePropertyName() @@ -427,7 +427,7 @@ void SAL_CALL AccessibleControlShape::notifyEvent( const AccessibleEventObject& AccessibleEventObject aTranslatedEvent( _rEvent ); { - ::osl::MutexGuard aGuard( maMutex ); + ::osl::MutexGuard aGuard( m_aMutex ); // let the child manager translate the event aTranslatedEvent.Source = *this; diff --git a/svx/source/accessibility/AccessibleShape.cxx b/svx/source/accessibility/AccessibleShape.cxx index 821fd27864c0..8985e9cba6de 100644 --- a/svx/source/accessibility/AccessibleShape.cxx +++ b/svx/source/accessibility/AccessibleShape.cxx @@ -359,7 +359,7 @@ uno::Reference<XAccessible> SAL_CALL uno::Reference<XAccessibleRelationSet> SAL_CALL AccessibleShape::getAccessibleRelationSet() { - ::osl::MutexGuard aGuard (maMutex); + ::osl::MutexGuard aGuard (m_aMutex); if (mpParent == nullptr) return uno::Reference<XAccessibleRelationSet>(); @@ -384,7 +384,7 @@ uno::Reference<XAccessibleRelationSet> SAL_CALL uno::Reference<XAccessibleStateSet> SAL_CALL AccessibleShape::getAccessibleStateSet() { - ::osl::MutexGuard aGuard (maMutex); + ::osl::MutexGuard aGuard (m_aMutex); if (IsDisposed()) { @@ -456,7 +456,7 @@ uno::Reference<XAccessible > SAL_CALL AccessibleShape::getAccessibleAtPoint ( const awt::Point& aPoint) { - ::osl::MutexGuard aGuard (maMutex); + ::osl::MutexGuard aGuard (m_aMutex); sal_Int32 nChildCount = getAccessibleChildCount (); for (sal_Int32 i=0; i<nChildCount; ++i) @@ -487,7 +487,7 @@ uno::Reference<XAccessible > SAL_CALL awt::Rectangle SAL_CALL AccessibleShape::getBounds() { SolarMutexGuard aSolarGuard; - ::osl::MutexGuard aGuard (maMutex); + ::osl::MutexGuard aGuard (m_aMutex); ThrowIfDisposed (); awt::Rectangle aBoundingBox; @@ -896,7 +896,7 @@ uno::Sequence<uno::Type> SAL_CALL void AccessibleShape::disposing (const lang::EventObject& aEvent) { SolarMutexGuard aSolarGuard; - ::osl::MutexGuard aGuard (maMutex); + ::osl::MutexGuard aGuard (m_aMutex); try { @@ -1011,7 +1011,7 @@ OUString AccessibleShape::GetFullAccessibleName (AccessibleShape *shape) void AccessibleShape::disposing() { SolarMutexGuard aSolarGuard; - ::osl::MutexGuard aGuard (maMutex); + ::osl::MutexGuard aGuard (m_aMutex); // Make sure to send an event that this object loses the focus in the // case that it has the focus. diff --git a/svx/source/accessibility/ChildrenManagerImpl.cxx b/svx/source/accessibility/ChildrenManagerImpl.cxx index 4d474a4953fa..2b8f5674b0d9 100644 --- a/svx/source/accessibility/ChildrenManagerImpl.cxx +++ b/svx/source/accessibility/ChildrenManagerImpl.cxx @@ -71,7 +71,7 @@ ChildrenManagerImpl::ChildrenManagerImpl ( AccessibleContextBase& rContext) : ::cppu::WeakComponentImplHelper< css::document::XEventListener, - css::view::XSelectionChangeListener>(maMutex), + css::view::XSelectionChangeListener>(m_aMutex), mxShapeList (rxShapeList), mxParent (rxParent), maShapeTreeInfo (rShapeTreeInfo), diff --git a/svx/source/accessibility/ChildrenManagerImpl.hxx b/svx/source/accessibility/ChildrenManagerImpl.hxx index 5520a4947b32..1956a7650fc4 100644 --- a/svx/source/accessibility/ChildrenManagerImpl.hxx +++ b/svx/source/accessibility/ChildrenManagerImpl.hxx @@ -72,7 +72,7 @@ typedef ::std::vector<ChildDescriptor> ChildDescriptorListType; @see ChildrenManager */ class ChildrenManagerImpl final - : public MutexOwner, + : public cppu::BaseMutex, public cppu::WeakComponentImplHelper< css::document::XEventListener, css::view::XSelectionChangeListener>, diff --git a/svx/source/table/accessiblecell.cxx b/svx/source/table/accessiblecell.cxx index d298555734ba..127d6b7fb742 100644 --- a/svx/source/table/accessiblecell.cxx +++ b/svx/source/table/accessiblecell.cxx @@ -181,7 +181,7 @@ Reference<XAccessible> SAL_CALL AccessibleCell::getAccessibleChild (sal_Int32 nI Reference<XAccessibleStateSet> SAL_CALL AccessibleCell::getAccessibleStateSet() { SolarMutexGuard aSolarGuard; - ::osl::MutexGuard aGuard (maMutex); + ::osl::MutexGuard aGuard (m_aMutex); Reference<XAccessibleStateSet> xStateSet; if (rBHelper.bDisposed || mpText == nullptr) @@ -261,7 +261,7 @@ sal_Bool SAL_CALL AccessibleCell::containsPoint( const css::awt::Point& aPoint) Reference<XAccessible > SAL_CALL AccessibleCell::getAccessibleAtPoint ( const css::awt::Point& aPoint) { SolarMutexGuard aSolarGuard; - ::osl::MutexGuard aGuard (maMutex); + ::osl::MutexGuard aGuard (m_aMutex); sal_Int32 nChildCount = getAccessibleChildCount (); for (sal_Int32 i=0; i<nChildCount; ++i) @@ -291,7 +291,7 @@ Reference<XAccessible > SAL_CALL AccessibleCell::getAccessibleAtPoint ( const c css::awt::Rectangle SAL_CALL AccessibleCell::getBounds() { SolarMutexGuard aSolarGuard; - ::osl::MutexGuard aGuard (maMutex); + ::osl::MutexGuard aGuard (m_aMutex); ThrowIfDisposed (); css::awt::Rectangle aBoundingBox; @@ -426,7 +426,7 @@ OUString SAL_CALL AccessibleCell::getToolTipText() void SAL_CALL AccessibleCell::addAccessibleEventListener( const Reference<XAccessibleEventListener >& rxListener) { SolarMutexGuard aSolarGuard; - ::osl::MutexGuard aGuard (maMutex); + ::osl::MutexGuard aGuard (m_aMutex); if (rBHelper.bDisposed || rBHelper.bInDispose) { Reference<XInterface> xSource( static_cast<XComponent *>(this) ); @@ -489,7 +489,7 @@ void AccessibleCell::ViewForwarderChanged() void AccessibleCell::disposing() { SolarMutexGuard aSolarGuard; - ::osl::MutexGuard aGuard (maMutex); + ::osl::MutexGuard aGuard (m_aMutex); // Make sure to send an event that this object loses the focus in the // case that it has the focus. |