diff options
author | Noel <noel.grandin@collabora.co.uk> | 2021-02-04 10:43:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-02-04 14:29:36 +0100 |
commit | 011d0d0078841a8ccebfdd1b360172314493c750 (patch) | |
tree | c0f112388ad298e9c7fabbc7bbc54efa1bd3efaf /editeng/source | |
parent | ef98a5aae0449cb93f11e46ea9c802326a5dd8ef (diff) |
remove svx/mutxhelp.hxx
which is a clone of cppu::BaseMutex
Change-Id: I6db266a4b67ac2d8b6c389cd27bf5bc7b9ecc754
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110402
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng/source')
-rw-r--r-- | editeng/source/uno/unofield.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/uno/unofield.cxx b/editeng/source/uno/unofield.cxx index 59772b594490..081ccec809db 100644 --- a/editeng/source/uno/unofield.cxx +++ b/editeng/source/uno/unofield.cxx @@ -249,7 +249,7 @@ sal_Int64 SAL_CALL SvxUnoTextField::getSomething( const css::uno::Sequence< sal_ } SvxUnoTextField::SvxUnoTextField( sal_Int32 nServiceId ) throw() -: OComponentHelper( getMutex() ) +: OComponentHelper( m_aMutex ) , mpPropSet(nullptr) , mnServiceId(nServiceId) , mpImpl( new SvxUnoFieldData_Impl ) @@ -315,7 +315,7 @@ SvxUnoTextField::SvxUnoTextField( sal_Int32 nServiceId ) throw() } SvxUnoTextField::SvxUnoTextField( uno::Reference< text::XTextRange > const & xAnchor, const OUString& rPresentation, const SvxFieldData* pData ) throw() -: OComponentHelper( getMutex() ) +: OComponentHelper( m_aMutex ) , mxAnchor( xAnchor ) , mpPropSet(nullptr) , mnServiceId(text::textfield::Type::UNSPECIFIED) |