summaryrefslogtreecommitdiff
path: root/linguistic/workben
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-08-20 18:40:30 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-08-21 06:28:42 +0000
commit5a2d6bf3a94f127307d6a9464033b2226508ff38 (patch)
treea3233fa3c46bc919647f6affc491e32570c9af7d /linguistic/workben
parent4385e2d3c42b54390cb27546f7fa1a19fca8e8c5 (diff)
linguistic: tdf#88206 replace cppu::WeakImplHelper*
with the variadic variants. Change-Id: I7a4df40d680ed9e10daacd01657df9666b8cc524 Reviewed-on: https://gerrit.libreoffice.org/17868 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'linguistic/workben')
-rw-r--r--linguistic/workben/sprophelp.hxx4
-rw-r--r--linguistic/workben/sspellimp.hxx5
2 files changed, 4 insertions, 5 deletions
diff --git a/linguistic/workben/sprophelp.hxx b/linguistic/workben/sprophelp.hxx
index 939ea6b0817f..d2dc229ba9e1 100644
--- a/linguistic/workben/sprophelp.hxx
+++ b/linguistic/workben/sprophelp.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_LINGUISTIC_WORKBEN_SPROPHELP_HXX
#define INCLUDED_LINGUISTIC_WORKBEN_SPROPHELP_HXX
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/interfacecontainer.h>
#include <com/sun/star/beans/XPropertyChangeListener.hpp>
#include <com/sun/star/beans/PropertyValues.hpp>
@@ -46,7 +46,7 @@ using namespace ::com::sun::star::linguistic2;
// Only propertyChange needs to be implemented.
class PropertyChgHelper :
- public cppu::WeakImplHelper2
+ public cppu::WeakImplHelper
<
XPropertyChangeListener,
XLinguServiceEventBroadcaster
diff --git a/linguistic/workben/sspellimp.hxx b/linguistic/workben/sspellimp.hxx
index 58b0afe138e0..cb9232a9ad0a 100644
--- a/linguistic/workben/sspellimp.hxx
+++ b/linguistic/workben/sspellimp.hxx
@@ -20,8 +20,7 @@
#ifndef INCLUDED_LINGUISTIC_WORKBEN_SSPELLIMP_HXX
#define INCLUDED_LINGUISTIC_WORKBEN_SSPELLIMP_HXX
-#include <cppuhelper/implbase1.hxx>
-#include <cppuhelper/implbase6.hxx>
+#include <cppuhelper/implbase.hxx>
#include <com/sun/star/lang/XComponent.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
#include <com/sun/star/lang/XServiceDisplayName.hpp>
@@ -43,7 +42,7 @@ using namespace ::com::sun::star::linguistic2;
class SpellChecker :
- public cppu::WeakImplHelper6
+ public cppu::WeakImplHelper
<
XSpellChecker,
XLinguServiceEventBroadcaster,