summaryrefslogtreecommitdiff
path: root/desktop/source/pkgchk
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-07-22 23:48:08 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-07-23 07:16:39 +0000
commit4ee98aec9f1835bba6eaab9e982c255e8c99be1e (patch)
tree8c076106bbae600da5b9442ccf0e9938487d5cef /desktop/source/pkgchk
parent62824a22161501a62b950ed461dc5839fa5ea942 (diff)
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 <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'desktop/source/pkgchk')
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_app.cxx4
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx4
2 files changed, 4 insertions, 4 deletions
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 <osl/process.h>
#include <osl/conditn.hxx>
#include <osl/file.hxx>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/exc_hlp.hxx>
#include <comphelper/anytostring.hxx>
#include <comphelper/sequence.hxx>
@@ -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 <osl/thread.h>
#include <tools/resmgr.hxx>
-#include <cppuhelper/implbase3.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/exc_hlp.hxx>
#include <comphelper/anytostring.hxx>
#include <unotools/configmgr.hxx>
@@ -52,7 +52,7 @@ namespace {
class CommandEnvironmentImpl
- : public ::cppu::WeakImplHelper3< XCommandEnvironment,
+ : public ::cppu::WeakImplHelper< XCommandEnvironment,
task::XInteractionHandler,
XProgressHandler >
{