From 9ea32ccd6e45e2d914e09413a4164045aff9f0fd Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Sat, 5 Sep 2015 18:09:41 +0900 Subject: svl: tdf#88206 replace cppu::WeakImplHelper* with the variadic variants. Change-Id: I7aad512c4de034ed96b9a48e797e580e605d98a6 Reviewed-on: https://gerrit.libreoffice.org/18351 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svl/qa/unit/test_URIHelper.cxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'svl/qa') diff --git a/svl/qa/unit/test_URIHelper.cxx b/svl/qa/unit/test_URIHelper.cxx index cedebdfe322d..b221b54feb16 100644 --- a/svl/qa/unit/test_URIHelper.cxx +++ b/svl/qa/unit/test_URIHelper.cxx @@ -38,8 +38,7 @@ #include #include #include -#include -#include +#include #include "cppunit/TestCase.h" #include "cppunit/TestFixture.h" #include "cppunit/TestSuite.h" @@ -66,7 +65,7 @@ namespace { // This class only implements that subset of functionality of a proper // css::ucb::Content that is known to be needed here: class Content: - public cppu::WeakImplHelper2< + public cppu::WeakImplHelper< css::ucb::XContent, css::ucb::XCommandProcessor > { public: @@ -169,7 +168,7 @@ css::uno::Any Content::execute( return css::uno::makeAny(uri.toAsciiLowerCase()); } -class Provider: public cppu::WeakImplHelper1< css::ucb::XContentProvider > { +class Provider: public cppu::WeakImplHelper< css::ucb::XContentProvider > { public: virtual css::uno::Reference< css::ucb::XContent > SAL_CALL queryContent( css::uno::Reference< css::ucb::XContentIdentifier > const & identifier) -- cgit