diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-11 10:37:30 +0900 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-09-11 17:19:39 +0000 |
commit | 50b26404dee83974cf84749a9d492ed208464597 (patch) | |
tree | 9f2d96524259327ac48f443af72e2503fcd2bfaf /vcl/osx/DropTarget.hxx | |
parent | 8358eadcbae4b1e20f85f31d0faf6b3fccf353eb (diff) |
vcl: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I4499569f73b04cc7444787d51bf804c090a5c951
Reviewed-on: https://gerrit.libreoffice.org/18478
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'vcl/osx/DropTarget.hxx')
-rw-r--r-- | vcl/osx/DropTarget.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/DropTarget.hxx b/vcl/osx/DropTarget.hxx index 9223fb35a571..d592bf1d397d 100644 --- a/vcl/osx/DropTarget.hxx +++ b/vcl/osx/DropTarget.hxx @@ -21,7 +21,7 @@ #define INCLUDED_VCL_OSX_DROPTARGET_HXX #include "DataFlavorMapping.hxx" -#include <cppuhelper/compbase5.hxx> +#include <cppuhelper/compbase.hxx> #include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/datatransfer/dnd/XDropTarget.hpp> @@ -73,7 +73,7 @@ class AquaSalFrame; @end class DropTarget: public cppu::BaseMutex, - public cppu::WeakComponentImplHelper5< com::sun::star::lang::XInitialization, + public cppu::WeakComponentImplHelper< com::sun::star::lang::XInitialization, com::sun::star::datatransfer::dnd::XDropTarget, com::sun::star::datatransfer::dnd::XDropTargetDragContext, com::sun::star::datatransfer::dnd::XDropTargetDropContext, |