From ee7da352b885cfead32abb3fd111acead0c32816 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Tue, 15 Sep 2015 10:08:55 +0900 Subject: Resolves: tdf#88206 replace cppu::WeakImplHelper* etc. with the variadic variants. Change-Id: I7154f9472f02fdf47d27ba715db55bb1ec669a8a Reviewed-on: https://gerrit.libreoffice.org/18580 Tested-by: Jenkins Reviewed-by: Noel Grandin --- xmlhelp/source/cxxhelp/inc/tvfactory.hxx | 4 ++-- xmlhelp/source/cxxhelp/inc/tvread.hxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'xmlhelp') diff --git a/xmlhelp/source/cxxhelp/inc/tvfactory.hxx b/xmlhelp/source/cxxhelp/inc/tvfactory.hxx index 9e2a8ec1b0e7..35bf4e65f0d8 100644 --- a/xmlhelp/source/cxxhelp/inc/tvfactory.hxx +++ b/xmlhelp/source/cxxhelp/inc/tvfactory.hxx @@ -28,12 +28,12 @@ #include #include #include -#include +#include namespace treeview { -class TVFactory: public cppu::WeakImplHelper2 < +class TVFactory: public cppu::WeakImplHelper < css::lang::XServiceInfo, css::lang::XMultiServiceFactory > { diff --git a/xmlhelp/source/cxxhelp/inc/tvread.hxx b/xmlhelp/source/cxxhelp/inc/tvread.hxx index 757571064b0f..7bd8ea7fd800 100644 --- a/xmlhelp/source/cxxhelp/inc/tvread.hxx +++ b/xmlhelp/source/cxxhelp/inc/tvread.hxx @@ -35,7 +35,7 @@ #include #include #include -#include +#include namespace treeview { @@ -61,7 +61,7 @@ namespace treeview { class TVDom; class TVChildTarget; - class TVBase : public cppu::WeakImplHelper4 < + class TVBase : public cppu::WeakImplHelper < css::container::XNameAccess, css::container::XHierarchicalNameAccess, css::util::XChangesNotifier, -- cgit