summaryrefslogtreecommitdiffstats
path: root/cppuhelper/qa/weak
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/weak
parentxmlsecurity DigitalSignaturesDialog: show signature type on the UI (diff)
downloadcore-61b00192cd4682cb592d880be1f4d57925ca03c7.tar.gz
core-61b00192cd4682cb592d880be1f4d57925ca03c7.zip
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/weak')
-rw-r--r--cppuhelper/qa/weak/test_weak.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/qa/weak/test_weak.cxx b/cppuhelper/qa/weak/test_weak.cxx
index 84c980efb2b5..2a1d23e1c2a8 100644
--- a/cppuhelper/qa/weak/test_weak.cxx
+++ b/cppuhelper/qa/weak/test_weak.cxx
@@ -27,14 +27,14 @@
#include <com/sun/star/uno/XAdapter.hpp>
#include <com/sun/star/uno/XReference.hpp>
#include <com/sun/star/uno/XWeak.hpp>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/weak.hxx>
#include <rtl/ref.hxx>
#include <sal/types.h>
namespace {
-class Reference: public cppu::WeakImplHelper1< css::uno::XReference > {
+class Reference: public cppu::WeakImplHelper< css::uno::XReference > {
public:
Reference(): m_disposed(false) {}