Kaydet (Commit) aecdaa71 authored tarafından Takeshi Abe's avatar Takeshi Abe Kaydeden (comit) Noel Grandin

tdf#88206 replace cppu::WeakImplHelper* etc.

with the variadic variants in embedserv and eventattacher.

Change-Id: I556ad208a7ffcf85c484e298cdbb1324b8a6a659
Reviewed-on: https://gerrit.libreoffice.org/17499Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 62de18ab
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
#include <com/sun/star/util/XModifyListener.hpp> #include <com/sun/star/util/XModifyListener.hpp>
#include <com/sun/star/frame/XFrame2.hpp> #include <com/sun/star/frame/XFrame2.hpp>
#include <com/sun/star/frame/XDispatchProviderInterceptor.hpp> #include <com/sun/star/frame/XDispatchProviderInterceptor.hpp>
#include <cppuhelper/implbase4.hxx> #include <cppuhelper/implbase.hxx>
#include <rtl/ref.hxx> #include <rtl/ref.hxx>
...@@ -43,7 +43,7 @@ namespace winwrap { ...@@ -43,7 +43,7 @@ namespace winwrap {
class DocumentHolder : class DocumentHolder :
public ::cppu::WeakImplHelper4< public ::cppu::WeakImplHelper<
::com::sun::star::util::XCloseListener, ::com::sun::star::util::XCloseListener,
::com::sun::star::frame::XTerminateListener, ::com::sun::star::frame::XTerminateListener,
::com::sun::star::util::XModifyListener, ::com::sun::star::util::XModifyListener,
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define INCLUDED_EMBEDSERV_SOURCE_INC_INTERCEPT_HXX #define INCLUDED_EMBEDSERV_SOURCE_INC_INTERCEPT_HXX
#include <osl/mutex.hxx> #include <osl/mutex.hxx>
#include <cppuhelper/implbase3.hxx> #include <cppuhelper/implbase.hxx>
#include <cppuhelper/interfacecontainer.hxx> #include <cppuhelper/interfacecontainer.hxx>
#include <com/sun/star/frame/XDispatchProviderInterceptor.hpp> #include <com/sun/star/frame/XDispatchProviderInterceptor.hpp>
#include <com/sun/star/frame/XInterceptorInfo.hpp> #include <com/sun/star/frame/XInterceptorInfo.hpp>
...@@ -36,7 +36,7 @@ class EmbedDocument_Impl; ...@@ -36,7 +36,7 @@ class EmbedDocument_Impl;
class DocumentHolder; class DocumentHolder;
class Interceptor class Interceptor
: public ::cppu::WeakImplHelper3< : public ::cppu::WeakImplHelper<
::com::sun::star::frame::XDispatchProviderInterceptor, ::com::sun::star::frame::XDispatchProviderInterceptor,
::com::sun::star::frame::XInterceptorInfo, ::com::sun::star::frame::XInterceptorInfo,
::com::sun::star::frame::XDispatch> ::com::sun::star::frame::XDispatch>
......
...@@ -24,13 +24,13 @@ ...@@ -24,13 +24,13 @@
#include "common.h" #include "common.h"
#include <osl/mutex.hxx> #include <osl/mutex.hxx>
#include <cppuhelper/interfacecontainer.h> #include <cppuhelper/interfacecontainer.h>
#include <cppuhelper/implbase2.hxx> #include <cppuhelper/implbase.hxx>
#include <com/sun/star/awt/XWindow.hpp> #include <com/sun/star/awt/XWindow.hpp>
#include <com/sun/star/awt/XSystemDependentWindowPeer.hpp> #include <com/sun/star/awt/XSystemDependentWindowPeer.hpp>
class ContainerWindowWrapper: class ContainerWindowWrapper:
public ::cppu::WeakImplHelper2< public ::cppu::WeakImplHelper<
::com::sun::star::awt::XWindow, ::com::sun::star::awt::XWindow,
::com::sun::star::awt::XSystemDependentWindowPeer> ::com::sun::star::awt::XSystemDependentWindowPeer>
{ {
......
...@@ -36,8 +36,7 @@ ...@@ -36,8 +36,7 @@
#include <comphelper/processfactory.hxx> #include <comphelper/processfactory.hxx>
#include <cppuhelper/weak.hxx> #include <cppuhelper/weak.hxx>
#include <cppuhelper/factory.hxx> #include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase.hxx>
#include <cppuhelper/implbase3.hxx>
#include <cppuhelper/supportsservice.hxx> #include <cppuhelper/supportsservice.hxx>
using namespace com::sun::star::uno; using namespace com::sun::star::uno;
...@@ -60,7 +59,7 @@ namespace comp_EventAttacher { ...@@ -60,7 +59,7 @@ namespace comp_EventAttacher {
// class InvocationToAllListenerMapper // class InvocationToAllListenerMapper
// helper class to map XInvocation to XAllListener // helper class to map XInvocation to XAllListener
class InvocationToAllListenerMapper : public WeakImplHelper1< XInvocation > class InvocationToAllListenerMapper : public WeakImplHelper< XInvocation >
{ {
public: public:
InvocationToAllListenerMapper( const Reference< XIdlClass >& ListenerType, InvocationToAllListenerMapper( const Reference< XIdlClass >& ListenerType,
...@@ -209,7 +208,7 @@ sal_Bool SAL_CALL InvocationToAllListenerMapper::hasProperty(const OUString& Nam ...@@ -209,7 +208,7 @@ sal_Bool SAL_CALL InvocationToAllListenerMapper::hasProperty(const OUString& Nam
// class EventAttacherImpl // class EventAttacherImpl
// represents an implementation of the EventAttacher service // represents an implementation of the EventAttacher service
class EventAttacherImpl : public WeakImplHelper3 < XEventAttacher2, XInitialization, XServiceInfo > class EventAttacherImpl : public WeakImplHelper < XEventAttacher2, XInitialization, XServiceInfo >
{ {
public: public:
EventAttacherImpl( const Reference< XComponentContext >& ); EventAttacherImpl( const Reference< XComponentContext >& );
...@@ -431,7 +430,7 @@ Reference< XTypeConverter > EventAttacherImpl::getConverter() throw( Exception ) ...@@ -431,7 +430,7 @@ Reference< XTypeConverter > EventAttacherImpl::getConverter() throw( Exception )
// Implementation of an EventAttacher-related AllListeners, which brings // Implementation of an EventAttacher-related AllListeners, which brings
// a few Events to a general AllListener // a few Events to a general AllListener
class FilterAllListenerImpl : public WeakImplHelper1< XAllListener > class FilterAllListenerImpl : public WeakImplHelper< XAllListener >
{ {
public: public:
FilterAllListenerImpl( EventAttacherImpl * pEA_, const OUString& EventMethod_, FilterAllListenerImpl( EventAttacherImpl * pEA_, const OUString& EventMethod_,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment