From 315afb12853624bdaac553a8528390c3a61c8351 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Fri, 3 Jul 2015 11:41:33 +0900 Subject: tdf#88206 replace cppu::WeakImplHelper* etc. with the variadic variants, in binaryurp / bridges. Change-Id: I2d158c24e73681907cae5815d4b07b1c74f74335 Reviewed-on: https://gerrit.libreoffice.org/16792 Tested-by: Jenkins Reviewed-by: Noel Grandin --- bridges/test/java_uno/nativethreadpool/testnativethreadpoolclient.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bridges/test/java_uno/nativethreadpool/testnativethreadpoolclient.cxx') diff --git a/bridges/test/java_uno/nativethreadpool/testnativethreadpoolclient.cxx b/bridges/test/java_uno/nativethreadpool/testnativethreadpoolclient.cxx index 4a20eee6477e..f36c35ea480c 100644 --- a/bridges/test/java_uno/nativethreadpool/testnativethreadpoolclient.cxx +++ b/bridges/test/java_uno/nativethreadpool/testnativethreadpoolclient.cxx @@ -36,7 +36,7 @@ #include "com/sun/star/uno/XComponentContext.hpp" #include "com/sun/star/uno/XInterface.hpp" #include "cppuhelper/factory.hxx" -#include "cppuhelper/implbase2.hxx" +#include "cppuhelper/implbase.hxx" #include "cppuhelper/implementationentry.hxx" #include "cppuhelper/weak.hxx" #include "osl/thread.hxx" @@ -47,7 +47,7 @@ namespace { -class Client: public cppu::WeakImplHelper2< +class Client: public cppu::WeakImplHelper< css::lang::XMain, test::javauno::nativethreadpool::XSource > { public: -- cgit