From 7f4e0d6aa29da640408cf4cc84b2fc1a0c11f8ba Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Sat, 22 Aug 2015 17:06:40 +0900 Subject: oox: tdf#88206 replace cppu::WeakImplHelper* etc. with the variadic variants. Change-Id: I8a82df7ea24874d8e246dc983418d872f1943c8e Reviewed-on: https://gerrit.libreoffice.org/17919 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- oox/source/docprop/docprophandler.hxx | 4 ++-- oox/source/docprop/ooxmldocpropimport.hxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'oox/source/docprop') diff --git a/oox/source/docprop/docprophandler.hxx b/oox/source/docprop/docprophandler.hxx index daabc03234b5..26d3593b00e9 100644 --- a/oox/source/docprop/docprophandler.hxx +++ b/oox/source/docprop/docprophandler.hxx @@ -24,7 +24,7 @@ #include #include -#include +#include #include "oox/token/namespaces.hxx" #include "oox/token/tokens.hxx" @@ -39,7 +39,7 @@ namespace docprop { #define DC_TOKEN( token ) (::oox::NMSP_dc | XML_##token) #define DCT_TOKEN( token ) (::oox::NMSP_dcTerms | XML_##token) -class OOXMLDocPropHandler : public ::cppu::WeakImplHelper1< ::com::sun::star::xml::sax::XFastDocumentHandler > +class OOXMLDocPropHandler : public ::cppu::WeakImplHelper< ::com::sun::star::xml::sax::XFastDocumentHandler > { ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext; ::com::sun::star::uno::Reference< ::com::sun::star::document::XDocumentProperties > m_xDocProp; diff --git a/oox/source/docprop/ooxmldocpropimport.hxx b/oox/source/docprop/ooxmldocpropimport.hxx index 861825a5dd5d..c186eb0083b5 100644 --- a/oox/source/docprop/ooxmldocpropimport.hxx +++ b/oox/source/docprop/ooxmldocpropimport.hxx @@ -24,13 +24,13 @@ #include #include #include -#include +#include namespace oox { namespace docprop { class DocumentPropertiesImport : - public ::cppu::WeakImplHelper2< + public ::cppu::WeakImplHelper< ::com::sun::star::lang::XServiceInfo, ::com::sun::star::document::XOOXMLDocumentPropertiesImporter > { -- cgit