diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-03 09:33:40 +0900 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-09-03 17:55:02 +0000 |
commit | cfaebe5de91c8049b086019e4c0ef90d5cbb883f (patch) | |
tree | 8c230b61455c1191be0a8bf17fde1d7ff851c472 /shell/source/sessioninstall | |
parent | f3c7e6953675f4ed85a5212a6af3ee189400f34e (diff) |
shell: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I0eb2efbd123198c7d8a99e9dd7c613f9b2b23c2d
Reviewed-on: https://gerrit.libreoffice.org/18286
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'shell/source/sessioninstall')
-rw-r--r-- | shell/source/sessioninstall/SyncDbusSessionHelper.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/sessioninstall/SyncDbusSessionHelper.hxx b/shell/source/sessioninstall/SyncDbusSessionHelper.hxx index 47c72a8585b2..04d9776abefc 100644 --- a/shell/source/sessioninstall/SyncDbusSessionHelper.hxx +++ b/shell/source/sessioninstall/SyncDbusSessionHelper.hxx @@ -13,11 +13,11 @@ #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/uno/XComponentContext.hpp> #include <org/freedesktop/PackageKit/SyncDbusSessionHelper.hpp> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> namespace shell { namespace sessioninstall { - class SyncDbusSessionHelper : public ::cppu::WeakImplHelper1< ::org::freedesktop::PackageKit::XSyncDbusSessionHelper > + class SyncDbusSessionHelper : public ::cppu::WeakImplHelper< ::org::freedesktop::PackageKit::XSyncDbusSessionHelper > { public: SyncDbusSessionHelper(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext> const&); |