summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/inc
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/deployment/inc
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/deployment/inc')
-rw-r--r--desktop/source/deployment/inc/dp_interact.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/deployment/inc/dp_interact.h b/desktop/source/deployment/inc/dp_interact.h
index bfe26d8b20b5..16de82563dc0 100644
--- a/desktop/source/deployment/inc/dp_interact.h
+++ b/desktop/source/deployment/inc/dp_interact.h
@@ -21,7 +21,7 @@
#define INCLUDED_DESKTOP_SOURCE_DEPLOYMENT_INC_DP_INTERACT_H
#include <rtl/ref.hxx>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/ucb/XCommandEnvironment.hpp>
#include <com/sun/star/task/XAbortChannel.hpp>
@@ -104,7 +104,7 @@ DESKTOP_DEPLOYMENTMISC_DLLPUBLIC bool interactContinuation(
class DESKTOP_DEPLOYMENTMISC_DLLPUBLIC AbortChannel :
- public ::cppu::WeakImplHelper1<css::task::XAbortChannel>
+ public ::cppu::WeakImplHelper<css::task::XAbortChannel>
{
bool m_aborted;
css::uno::Reference<css::task::XAbortChannel> m_xNext;