summaryrefslogtreecommitdiff
path: root/sc/inc/dispuno.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-08-28 09:42:29 +0900
committerMichael Stahl <mstahl@redhat.com>2015-09-03 16:14:41 +0000
commit1873563bb2d9743fe548ceaf2d1429280a27b956 (patch)
treecc1f851977966aeda4978a618b80bba01ca8dce2 /sc/inc/dispuno.hxx
parent88890c2a7522394f355a3f47a4dfb4608ac5a1cd (diff)
sc: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: I2f55a6231e903b0ca198cee3a88023ad1db6c50c Reviewed-on: https://gerrit.libreoffice.org/18072 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sc/inc/dispuno.hxx')
-rw-r--r--sc/inc/dispuno.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/dispuno.hxx b/sc/inc/dispuno.hxx
index cf01087744a7..9638ed5f72dc 100644
--- a/sc/inc/dispuno.hxx
+++ b/sc/inc/dispuno.hxx
@@ -22,7 +22,7 @@
#include <com/sun/star/frame/XDispatchProviderInterceptor.hpp>
#include <com/sun/star/view/XSelectionChangeListener.hpp>
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
#include <svl/lstner.hxx>
#include "global.hxx"
#include <boost/ptr_container/ptr_vector.hpp>
@@ -37,7 +37,7 @@ typedef ::com::sun::star::uno::Reference<
::com::sun::star::frame::XStatusListener > XStatusListenerRef;
typedef boost::ptr_vector<XStatusListenerRef> XStatusListenerArr_Impl;
-class ScDispatchProviderInterceptor : public cppu::WeakImplHelper2<
+class ScDispatchProviderInterceptor : public cppu::WeakImplHelper<
com::sun::star::frame::XDispatchProviderInterceptor,
com::sun::star::lang::XEventListener>,
public SfxListener
@@ -94,7 +94,7 @@ public:
throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};
-class ScDispatch : public cppu::WeakImplHelper2<
+class ScDispatch : public cppu::WeakImplHelper<
com::sun::star::frame::XDispatch,
com::sun::star::view::XSelectionChangeListener >,
public SfxListener