diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-12-25 18:55:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-27 07:35:06 +0100 |
commit | 0c50bf65eff7a2f7b788adb7c9afebb859a0f81b (patch) | |
tree | cae62ff76da1061466a5cbe43f5ee6d491d6c33e /cppcanvas | |
parent | ad492932e9b64991001a0eb5e0aa1fa7801bb3fa (diff) |
use comphelper::WeakComponentImplHelper in MtfRenderer
Change-Id: I54812a5db5d69a158b93ea1b89db47eb6f996ba7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127523
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cppcanvas')
-rw-r--r-- | cppcanvas/source/uno/uno_mtfrenderer.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/cppcanvas/source/uno/uno_mtfrenderer.cxx b/cppcanvas/source/uno/uno_mtfrenderer.cxx index 76037892b4d0..a531e0938f9f 100644 --- a/cppcanvas/source/uno/uno_mtfrenderer.cxx +++ b/cppcanvas/source/uno/uno_mtfrenderer.cxx @@ -13,17 +13,16 @@ #include <com/sun/star/rendering/XBitmapCanvas.hpp> #include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/beans/XFastPropertySet.hpp> -#include <cppuhelper/compbase.hxx> -#include <cppuhelper/basemutex.hxx> +#include <comphelper/compbase.hxx> #include <vcl/gdimtf.hxx> using namespace ::com::sun::star; -typedef cppu::WeakComponentImplHelper<css::rendering::XMtfRenderer, css::beans::XFastPropertySet> MtfRendererBase; +typedef comphelper::WeakComponentImplHelper<css::rendering::XMtfRenderer, css::beans::XFastPropertySet> MtfRendererBase; namespace { -class MtfRenderer : private cppu::BaseMutex, public MtfRendererBase +class MtfRenderer : public MtfRendererBase { public: MtfRenderer (css::uno::Sequence<css::uno::Any> const& args, @@ -67,7 +66,7 @@ void MtfRenderer::setFastPropertyValue( sal_Int32 nHandle, const uno::Any& aAny) } } -MtfRenderer::MtfRenderer (uno::Sequence<uno::Any> const& aArgs, uno::Reference<uno::XComponentContext> const&) : MtfRendererBase (m_aMutex), mpMetafile (nullptr) +MtfRenderer::MtfRenderer (uno::Sequence<uno::Any> const& aArgs, uno::Reference<uno::XComponentContext> const&) : mpMetafile (nullptr) { if( aArgs.getLength() == 1 ) { aArgs[0] >>= mxCanvas; |