diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-20 18:40:30 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-08-21 06:28:42 +0000 |
commit | 5a2d6bf3a94f127307d6a9464033b2226508ff38 (patch) | |
tree | a3233fa3c46bc919647f6affc491e32570c9af7d /linguistic/source/convdiclist.hxx | |
parent | 4385e2d3c42b54390cb27546f7fa1a19fca8e8c5 (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/source/convdiclist.hxx')
-rw-r--r-- | linguistic/source/convdiclist.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linguistic/source/convdiclist.hxx b/linguistic/source/convdiclist.hxx index f9e4cf383b63..8945e85ed5f0 100644 --- a/linguistic/source/convdiclist.hxx +++ b/linguistic/source/convdiclist.hxx @@ -23,7 +23,7 @@ #include <com/sun/star/linguistic2/XConversionDictionaryList.hpp> #include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> -#include <cppuhelper/implbase3.hxx> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/interfacecontainer.h> #include "linguistic/misc.hxx" @@ -34,7 +34,7 @@ class ConvDicNameContainer; class ConvDicList : - public cppu::WeakImplHelper3 + public cppu::WeakImplHelper < ::com::sun::star::linguistic2::XConversionDictionaryList, ::com::sun::star::lang::XComponent, |