diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-19 10:23:16 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-08-19 07:49:16 +0000 |
commit | e87c08babed9e3ac34908771fc95cab5386f01a2 (patch) | |
tree | 569681f0c0e022d8479dc6895cbfe81687f41990 /lingucomponent/source/languageguessing/guesslang.cxx | |
parent | e00d41f76d6cae3a93c112117af01287eb003e0e (diff) |
lingucomponent: tdf#88206 replace cppu::WeakImplHelper*
with the variadic variants.
Change-Id: Ibe00b26512a4895a603a084f4e816c74b99894df
Reviewed-on: https://gerrit.libreoffice.org/17850
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'lingucomponent/source/languageguessing/guesslang.cxx')
-rw-r--r-- | lingucomponent/source/languageguessing/guesslang.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lingucomponent/source/languageguessing/guesslang.cxx b/lingucomponent/source/languageguessing/guesslang.cxx index 9c848cd6ec93..2b2da0e0e544 100644 --- a/lingucomponent/source/languageguessing/guesslang.cxx +++ b/lingucomponent/source/languageguessing/guesslang.cxx @@ -25,7 +25,7 @@ #include <sal/config.h> #include <cppuhelper/factory.hxx> #include <cppuhelper/implementationentry.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/supportsservice.hxx> #include <simpleguesser.hxx> @@ -74,7 +74,7 @@ static osl::Mutex & GetLangGuessMutex() } class LangGuess_Impl : - public ::cppu::WeakImplHelper2< + public ::cppu::WeakImplHelper< XLanguageGuessing, XServiceInfo >, private boost::noncopyable |