From a175788dcd3edd4c82f70458f0fa6e7b44d86526 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Thu, 16 Jul 2015 17:43:53 +0900 Subject: tdf#88206 replace cppu::WeakImplHelper* etc. with the variadic variants, in cppcanvas / cpputools / cui. Change-Id: Ic28d0830ab86555494004c27b1468de2ea6825dc Reviewed-on: https://gerrit.libreoffice.org/17119 Tested-by: Jenkins Reviewed-by: Noel Grandin --- cpputools/source/unoexe/unoexe.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpputools/source/unoexe/unoexe.cxx') diff --git a/cpputools/source/unoexe/unoexe.cxx b/cpputools/source/unoexe/unoexe.cxx index b292deb6e35e..a898763690d9 100644 --- a/cpputools/source/unoexe/unoexe.cxx +++ b/cpputools/source/unoexe/unoexe.cxx @@ -30,7 +30,7 @@ #include #include -#include +#include #include #include @@ -252,7 +252,7 @@ static Reference< XInterface > loadComponent( } class OInstanceProvider - : public WeakImplHelper1< XInstanceProvider > + : public WeakImplHelper< XInstanceProvider > { Reference< XComponentContext > _xContext; @@ -348,7 +348,7 @@ Reference< XInterface > OInstanceProvider::getInstance( const OUString & rName ) "no such element \"" + rName + "\"!" ); } -struct ODisposingListener : public WeakImplHelper1< XEventListener > +struct ODisposingListener : public WeakImplHelper< XEventListener > { Condition cDisposed; -- cgit