summaryrefslogtreecommitdiff
path: root/svx/source/customshapes
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-09-06 19:59:36 +0900
committerCaolán McNamara <caolanm@redhat.com>2015-09-07 09:01:16 +0000
commit4e0a5cf0f929ae5fef7eda8057202ac29a8f3a77 (patch)
tree6e3348a7a019e734d8924865bc8755f90694bdca /svx/source/customshapes
parent7884205f64a962b586a553fd094abc46a3c1562e (diff)
svx: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: Id881385b2653da2ee89498afbd6453d40acaea83 Reviewed-on: https://gerrit.libreoffice.org/18358 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx/source/customshapes')
-rw-r--r--svx/source/customshapes/EnhancedCustomShapeEngine.cxx4
-rw-r--r--svx/source/customshapes/EnhancedCustomShapeHandle.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShapeEngine.cxx b/svx/source/customshapes/EnhancedCustomShapeEngine.cxx
index c78641fcb78e..8d766c725956 100644
--- a/svx/source/customshapes/EnhancedCustomShapeEngine.cxx
+++ b/svx/source/customshapes/EnhancedCustomShapeEngine.cxx
@@ -51,7 +51,7 @@
#include <basegfx/polygon/b2dpolypolygontools.hxx>
#include <basegfx/tools/unotools.hxx>
#include <com/sun/star/document/XActionLockable.hpp>
-#include <cppuhelper/implbase3.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/supportsservice.hxx>
using namespace css;
@@ -62,7 +62,7 @@ class SdrObjCustomShape;
namespace {
-class EnhancedCustomShapeEngine : public cppu::WeakImplHelper3
+class EnhancedCustomShapeEngine : public cppu::WeakImplHelper
<
css::lang::XInitialization,
css::lang::XServiceInfo,
diff --git a/svx/source/customshapes/EnhancedCustomShapeHandle.hxx b/svx/source/customshapes/EnhancedCustomShapeHandle.hxx
index 3a2390600144..37ad46dbf298 100644
--- a/svx/source/customshapes/EnhancedCustomShapeHandle.hxx
+++ b/svx/source/customshapes/EnhancedCustomShapeHandle.hxx
@@ -21,7 +21,7 @@
#define INCLUDED_SVX_SOURCE_CUSTOMSHAPES_ENHANCEDCUSTOMSHAPEHANDLE_HXX
#include <com/sun/star/uno/RuntimeException.hpp>
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
#include <com/sun/star/lang/XInitialization.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/drawing/XShape.hpp>
@@ -29,7 +29,7 @@
#include <com/sun/star/awt/Point.hpp>
#include <cppuhelper/weakref.hxx>
-class EnhancedCustomShapeHandle : public cppu::WeakImplHelper2
+class EnhancedCustomShapeHandle : public cppu::WeakImplHelper
<
com::sun::star::drawing::XCustomShapeHandle,
com::sun::star::lang::XInitialization