From 4ee98aec9f1835bba6eaab9e982c255e8c99be1e Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Wed, 22 Jul 2015 23:48:08 +0900 Subject: tdf#88206 replace cppu::WeakImplHelper* etc. with the variadic variants in desktop. Change-Id: I84d4c4b36fff95b5e1646f4df731d0b83ee1fe3e Reviewed-on: https://gerrit.libreoffice.org/17301 Tested-by: Jenkins Reviewed-by: Noel Grandin --- desktop/source/pkgchk/unopkg/unopkg_app.cxx | 4 ++-- desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'desktop/source/pkgchk') diff --git a/desktop/source/pkgchk/unopkg/unopkg_app.cxx b/desktop/source/pkgchk/unopkg/unopkg_app.cxx index cb37894d7a07..03d966761f1f 100644 --- a/desktop/source/pkgchk/unopkg/unopkg_app.cxx +++ b/desktop/source/pkgchk/unopkg/unopkg_app.cxx @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include #include @@ -122,7 +122,7 @@ const OptionInfo s_option_infos [] = { }; class DialogClosedListenerImpl : - public ::cppu::WeakImplHelper1< ui::dialogs::XDialogClosedListener > + public ::cppu::WeakImplHelper< ui::dialogs::XDialogClosedListener > { osl::Condition & m_rDialogClosedCondition; diff --git a/desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx b/desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx index c75e8fc46eb4..145117f7dd6a 100644 --- a/desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx +++ b/desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx @@ -23,7 +23,7 @@ #include "unopkg_shared.h" #include #include -#include +#include #include #include #include @@ -52,7 +52,7 @@ namespace { class CommandEnvironmentImpl - : public ::cppu::WeakImplHelper3< XCommandEnvironment, + : public ::cppu::WeakImplHelper< XCommandEnvironment, task::XInteractionHandler, XProgressHandler > { -- cgit