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 --- sot/source/sdstor/ucbstorage.cxx | 4 ++-- sot/source/unoolestorage/xolesimplestorage.hxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'sot') diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx index d6321fd797bb..7e1cfb4a8e78 100644 --- a/sot/source/sdstor/ucbstorage.cxx +++ b/sot/source/sdstor/ucbstorage.cxx @@ -55,7 +55,7 @@ #include #include #include -#include +#include #include #include "sot/stg.hxx" @@ -81,7 +81,7 @@ static int nOpenFiles=0; static int nOpenStreams=0; #endif -typedef ::cppu::WeakImplHelper2 < XInputStream, XSeekable > FileInputStreamWrapper_Base; +typedef ::cppu::WeakImplHelper < XInputStream, XSeekable > FileInputStreamWrapper_Base; class FileStreamWrapper_Impl : public FileInputStreamWrapper_Base { protected: diff --git a/sot/source/unoolestorage/xolesimplestorage.hxx b/sot/source/unoolestorage/xolesimplestorage.hxx index 818de7548739..03593c7d93ec 100644 --- a/sot/source/unoolestorage/xolesimplestorage.hxx +++ b/sot/source/unoolestorage/xolesimplestorage.hxx @@ -30,7 +30,7 @@ #include -#include +#include #include #include @@ -38,7 +38,7 @@ #include -class OLESimpleStorage : public ::cppu::WeakImplHelper3 +class OLESimpleStorage : public ::cppu::WeakImplHelper < ::com::sun::star::embed::XOLESimpleStorage , ::com::sun::star::lang::XInitialization , ::com::sun::star::lang::XServiceInfo > -- cgit