summaryrefslogtreecommitdiff
path: root/cpputools
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-07-16 17:43:53 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-07-17 07:14:22 +0000
commita175788dcd3edd4c82f70458f0fa6e7b44d86526 (patch)
tree91ffee44515de21f912595f6112b2a418c1b35ea /cpputools
parent7fa29ecc727c04159cee92aebc14fc5b1037a965 (diff)
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 <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'cpputools')
-rw-r--r--cpputools/source/unoexe/unoexe.cxx6
1 files changed, 3 insertions, 3 deletions
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 <rtl/ustrbuf.hxx>
#include <cppuhelper/bootstrap.hxx>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <com/sun/star/lang/XMain.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
@@ -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;