summaryrefslogtreecommitdiff
path: root/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-12-07 08:59:42 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-07 13:25:50 +0000
commit61b00192cd4682cb592d880be1f4d57925ca03c7 (patch)
tree6003d3d8d81c7f7564c0bf7b780bc403399ef18c /cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx
parent81f7824a9839d3230b4e58424a64a393e8ee0223 (diff)
tdf#88206 replace cppu::WeakImplHelper* in cppuhelper
Change-Id: I3130a3fe28c00bd83cade9667a6e3b3abcb719f7 Reviewed-on: https://gerrit.libreoffice.org/31714 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx')
-rw-r--r--cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx b/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx
index b1f7ff7722ed..0484eecbce7d 100644
--- a/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx
+++ b/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx
@@ -27,7 +27,7 @@
#include <com/sun/star/lang/XEventListener.hpp>
#include <cppuhelper/interfacecontainer.hxx>
#include <cppuhelper/queryinterface.hxx>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/propshlp.hxx>
using namespace com::sun::star;
@@ -42,7 +42,7 @@ struct ContainerStats {
ContainerStats() : m_nAlive(0), m_nDisposed(0) {}
};
-class ContainerListener : public ::cppu::WeakImplHelper1< XEventListener >
+class ContainerListener : public ::cppu::WeakImplHelper< XEventListener >
{
ContainerStats *m_pStats;
public: