diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-15 10:08:55 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-15 06:19:28 +0000 |
commit | ee7da352b885cfead32abb3fd111acead0c32816 (patch) | |
tree | 1609401dc01cc76a53a65b033827cfbe42fd1d0b /remotebridges | |
parent | 5bbff06137a87e97260a188f6745cf2a227f15cf (diff) |
Resolves: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I7154f9472f02fdf47d27ba715db55bb1ec669a8a
Reviewed-on: https://gerrit.libreoffice.org/18580
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'remotebridges')
-rw-r--r-- | remotebridges/source/unourl_resolver/unourl_resolver.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remotebridges/source/unourl_resolver/unourl_resolver.cxx b/remotebridges/source/unourl_resolver/unourl_resolver.cxx index a656ed19efe9..72c9083de099 100644 --- a/remotebridges/source/unourl_resolver/unourl_resolver.cxx +++ b/remotebridges/source/unourl_resolver/unourl_resolver.cxx @@ -27,7 +27,7 @@ #include <com/sun/star/connection/XConnector.hpp> #include <com/sun/star/registry/XRegistryKey.hpp> #include <cppuhelper/factory.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/implementationentry.hxx> #include <cppuhelper/supportsservice.hxx> #include "cppuhelper/unourl.hxx" @@ -59,7 +59,7 @@ OUString resolver_getImplementationName() return OUString(IMPLNAME); } -class ResolverImpl : public WeakImplHelper2< XServiceInfo, XUnoUrlResolver > +class ResolverImpl : public WeakImplHelper< XServiceInfo, XUnoUrlResolver > { Reference< XMultiComponentFactory > _xSMgr; Reference< XComponentContext > _xCtx; |