summaryrefslogtreecommitdiff
path: root/include/basegfx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-12-27 09:35:11 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-12-27 11:49:05 +0100
commit6464be15193cd0b54b4c1b8236b99e7971311c83 (patch)
tree47596c59ae1626c076f27cd90fd9517571900542 /include/basegfx
parente038ef76c1ef205143c853a3666fb56ca831750d (diff)
use comphelper::WeakComponentImplHelper in UnoPolyPolygon
Change-Id: I82248cfbb0cbdb765fa2f97f53e8990a9e05a28b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127547 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/basegfx')
-rw-r--r--include/basegfx/utils/unopolypolygon.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/basegfx/utils/unopolypolygon.hxx b/include/basegfx/utils/unopolypolygon.hxx
index b320998ac1a2..42da5921c7df 100644
--- a/include/basegfx/utils/unopolypolygon.hxx
+++ b/include/basegfx/utils/unopolypolygon.hxx
@@ -19,8 +19,7 @@
#pragma once
-#include <cppuhelper/basemutex.hxx>
-#include <cppuhelper/compbase.hxx>
+#include <comphelper/compbase.hxx>
#include <com/sun/star/lang/IndexOutOfBoundsException.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/rendering/FillRule.hpp>
@@ -31,14 +30,13 @@
namespace basegfx::unotools
{
- typedef cppu::WeakComponentImplHelper<
+ typedef comphelper::WeakComponentImplHelper<
css::rendering::XLinePolyPolygon2D,
css::rendering::XBezierPolyPolygon2D,
css::lang::XServiceInfo > UnoPolyPolygonBase;
class BASEGFX_DLLPUBLIC UnoPolyPolygon
- : private cppu::BaseMutex
- , public UnoPolyPolygonBase
+ : public UnoPolyPolygonBase
{
public:
explicit UnoPolyPolygon( const B2DPolyPolygon& );