summaryrefslogtreecommitdiff
path: root/desktop/test/deployment/active/active_native.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-07-22 23:48:08 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-07-23 07:16:39 +0000
commit4ee98aec9f1835bba6eaab9e982c255e8c99be1e (patch)
tree8c076106bbae600da5b9442ccf0e9938487d5cef /desktop/test/deployment/active/active_native.cxx
parent62824a22161501a62b950ed461dc5839fa5ea942 (diff)
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants in desktop. Change-Id: I84d4c4b36fff95b5e1646f4df731d0b83ee1fe3e Reviewed-on: https://gerrit.libreoffice.org/17301 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'desktop/test/deployment/active/active_native.cxx')
-rw-r--r--desktop/test/deployment/active/active_native.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/test/deployment/active/active_native.cxx b/desktop/test/deployment/active/active_native.cxx
index 06da72a3b274..db9c4dd10bf8 100644
--- a/desktop/test/deployment/active/active_native.cxx
+++ b/desktop/test/deployment/active/active_native.cxx
@@ -59,7 +59,7 @@
namespace {
class Provider:
- public cppu::WeakImplHelper2<
+ public cppu::WeakImplHelper<
css::lang::XServiceInfo, css::frame::XDispatchProvider >,
private boost::noncopyable
{
@@ -150,7 +150,7 @@ Provider::queryDispatches(
}
class Dispatch:
- public cppu::WeakImplHelper2<
+ public cppu::WeakImplHelper<
css::lang::XServiceInfo, css::frame::XDispatch >,
private boost::noncopyable
{