diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-12-04 13:25:08 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-04 15:57:43 +0000 |
commit | 1bc6bd89adfdfe77e0355319c9b25ee6999f74fc (patch) | |
tree | 45967d7302ec6971d234231c31e48ede01e1f686 /include/svtools/transfer.hxx | |
parent | fe471fec199f5a16bd49caa45561abc518ac75bb (diff) |
tdf#88206 replace cppu::WeakImplHelper* in svtools and svx
and remove unused implbase*.hxx and compbase*.hxx includes
Change-Id: Iedf6b6dce09b5baf714a1b3394bb7fb3526cca82
Reviewed-on: https://gerrit.libreoffice.org/31594
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svtools/transfer.hxx')
-rw-r--r-- | include/svtools/transfer.hxx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/svtools/transfer.hxx b/include/svtools/transfer.hxx index 13ea1c98e244..5f402457bd19 100644 --- a/include/svtools/transfer.hxx +++ b/include/svtools/transfer.hxx @@ -27,8 +27,7 @@ #include <tools/ref.hxx> #include <sot/formats.hxx> #include <sot/exchange.hxx> -#include <cppuhelper/implbase1.hxx> -#include <cppuhelper/implbase4.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/frame/XTerminateListener.hpp> #include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/datatransfer/XTransferable2.hpp> @@ -122,7 +121,7 @@ struct ExecuteDropEvent mbDefault( false ) {} }; -class SVT_DLLPUBLIC TransferableHelper : public ::cppu::WeakImplHelper4< css::datatransfer::XTransferable2, +class SVT_DLLPUBLIC TransferableHelper : public cppu::WeakImplHelper< css::datatransfer::XTransferable2, css::datatransfer::clipboard::XClipboardOwner, css::datatransfer::dnd::XDragSourceListener, css::lang::XUnoTunnel > @@ -130,7 +129,7 @@ class SVT_DLLPUBLIC TransferableHelper : public ::cppu::WeakImplHelper4< css::da private: // nested class to implement the XTerminateListener interface - class TerminateListener : public ::cppu::WeakImplHelper1< css::frame::XTerminateListener > + class TerminateListener : public cppu::WeakImplHelper< css::frame::XTerminateListener > { private: @@ -370,7 +369,7 @@ class SVT_DLLPUBLIC DragSourceHelper private: // nested class to implement the XDragGestureListener interface - class DragGestureListener : public ::cppu::WeakImplHelper1< css::datatransfer::dnd::XDragGestureListener > + class DragGestureListener : public cppu::WeakImplHelper< css::datatransfer::dnd::XDragGestureListener > { private: @@ -416,7 +415,7 @@ class SVT_DLLPUBLIC DropTargetHelper private: // nested class to implement the XDropTargetListener interface - class DropTargetListener : public ::cppu::WeakImplHelper1< css::datatransfer::dnd::XDropTargetListener > + class DropTargetListener : public cppu::WeakImplHelper< css::datatransfer::dnd::XDropTargetListener > { private: |