summaryrefslogtreecommitdiff
path: root/svx/source/unodraw/gluepts.cxx
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/unodraw/gluepts.cxx
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/unodraw/gluepts.cxx')
-rw-r--r--svx/source/unodraw/gluepts.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/unodraw/gluepts.cxx b/svx/source/unodraw/gluepts.cxx
index f2c156bbd608..c10eab8f3a5d 100644
--- a/svx/source/unodraw/gluepts.cxx
+++ b/svx/source/unodraw/gluepts.cxx
@@ -21,7 +21,7 @@
#include <com/sun/star/container/XIndexContainer.hpp>
#include <com/sun/star/drawing/GluePoint2.hpp>
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
#include <svx/svdmodel.hxx>
#include <svx/svdobj.hxx>
@@ -35,7 +35,7 @@ using namespace ::cppu;
const sal_uInt16 NON_USER_DEFINED_GLUE_POINTS = 4;
-class SvxUnoGluePointAccess : public WeakImplHelper2< container::XIndexContainer, container::XIdentifierContainer >
+class SvxUnoGluePointAccess : public WeakImplHelper< container::XIndexContainer, container::XIdentifierContainer >
{
private:
SdrObjectWeakRef mpObject;