summaryrefslogtreecommitdiff
path: root/canvas/source/simplecanvas
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-07-06 23:17:44 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-07-10 07:39:31 +0000
commitb854086df80b2607a3506bc8d455c98ae58aa295 (patch)
tree6a2a79e91c1b2008f5d4c4d1f5744981ab58e4db /canvas/source/simplecanvas
parent37a367a3589302893c237237e4eb98f1e4195f6d (diff)
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants, in canvas. Change-Id: I8604e6b6e0f45539e3411c98a166518b837b6758 Reviewed-on: https://gerrit.libreoffice.org/16798 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'canvas/source/simplecanvas')
-rw-r--r--canvas/source/simplecanvas/simplecanvasimpl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/canvas/source/simplecanvas/simplecanvasimpl.cxx b/canvas/source/simplecanvas/simplecanvasimpl.cxx
index a503a2f8f849..2bb88c40f7ed 100644
--- a/canvas/source/simplecanvas/simplecanvasimpl.cxx
+++ b/canvas/source/simplecanvas/simplecanvasimpl.cxx
@@ -27,7 +27,7 @@
#include <o3tl/lazy_update.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implementationentry.hxx>
-#include <cppuhelper/compbase2.hxx>
+#include <cppuhelper/compbase.hxx>
#include <cppuhelper/basemutex.hxx>
#include <comphelper/servicedecl.hxx>
@@ -106,7 +106,7 @@ namespace
};
- typedef ::cppu::WeakComponentImplHelper2< ::com::sun::star::rendering::XSimpleCanvas,
+ typedef ::cppu::WeakComponentImplHelper< ::com::sun::star::rendering::XSimpleCanvas,
::com::sun::star::lang::XServiceName > SimpleCanvasBase;
class SimpleCanvasImpl : private cppu::BaseMutex,