From 7fa29ecc727c04159cee92aebc14fc5b1037a965 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Fri, 17 Jul 2015 11:59:26 +0900 Subject: tdf#88206 replace cppu::WeakImplHelper* etc. with the variadic variants, for dbaccess. Change-Id: I60921b1b1d3b65fb9087552ed118c60dc9f89032 Reviewed-on: https://gerrit.libreoffice.org/17146 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- include/dbaccess/dbsubcomponentcontroller.hxx | 10 +++++----- include/dbaccess/genericcontroller.hxx | 26 +++++++++++++------------- 2 files changed, 18 insertions(+), 18 deletions(-) (limited to 'include/dbaccess') diff --git a/include/dbaccess/dbsubcomponentcontroller.hxx b/include/dbaccess/dbsubcomponentcontroller.hxx index 6cf592e4f072..9406a3e7954d 100644 --- a/include/dbaccess/dbsubcomponentcontroller.hxx +++ b/include/dbaccess/dbsubcomponentcontroller.hxx @@ -33,7 +33,7 @@ #include #include #include -#include +#include #include @@ -47,10 +47,10 @@ namespace dbaui class DBSubComponentController; - typedef ::cppu::ImplInheritanceHelper2 < OGenericUnoController - , ::com::sun::star::document::XScriptInvocationContext - , ::com::sun::star::util::XModifiable - > DBSubComponentController_Base; + typedef ::cppu::ImplInheritanceHelper< OGenericUnoController + , ::com::sun::star::document::XScriptInvocationContext + , ::com::sun::star::util::XModifiable + > DBSubComponentController_Base; struct DBSubComponentController_Impl; class DBACCESS_DLLPUBLIC DBSubComponentController : public DBSubComponentController_Base diff --git a/include/dbaccess/genericcontroller.hxx b/include/dbaccess/genericcontroller.hxx index f1953218ef15..3b40f65b774c 100644 --- a/include/dbaccess/genericcontroller.hxx +++ b/include/dbaccess/genericcontroller.hxx @@ -54,7 +54,7 @@ #include #include #include -#include +#include #include #include @@ -188,18 +188,18 @@ namespace dbaui typedef ::comphelper::SharedMutexBase OGenericUnoController_MBASE; - typedef ::cppu::WeakComponentImplHelper11 < ::com::sun::star::frame::XDispatch - , ::com::sun::star::frame::XDispatchProviderInterceptor - , ::com::sun::star::util::XModifyListener - , ::com::sun::star::frame::XFrameActionListener - , ::com::sun::star::lang::XInitialization - , ::com::sun::star::lang::XServiceInfo - , ::com::sun::star::frame::XDispatchInformationProvider - , ::com::sun::star::frame::XController2 - , ::com::sun::star::frame::XTitle - , ::com::sun::star::frame::XTitleChangeBroadcaster - , ::com::sun::star::awt::XUserInputInterception - > OGenericUnoController_Base; + typedef ::cppu::WeakComponentImplHelper< ::com::sun::star::frame::XDispatch + , ::com::sun::star::frame::XDispatchProviderInterceptor + , ::com::sun::star::util::XModifyListener + , ::com::sun::star::frame::XFrameActionListener + , ::com::sun::star::lang::XInitialization + , ::com::sun::star::lang::XServiceInfo + , ::com::sun::star::frame::XDispatchInformationProvider + , ::com::sun::star::frame::XController2 + , ::com::sun::star::frame::XTitle + , ::com::sun::star::frame::XTitleChangeBroadcaster + , ::com::sun::star::awt::XUserInputInterception + > OGenericUnoController_Base; struct OGenericUnoController_Data; -- cgit