diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-07-23 16:20:52 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-28 07:29:31 +0000 |
commit | 7e495e2b9e7b52ed169c936b63d960958db310cd (patch) | |
tree | be9fade8b81fc2e1448870c4ab84e75f41ab880b /dtrans/source/win32/dnd/targetdropcontext.hxx | |
parent | adbfe33377813b209bb4a7d7e4e9f737be033969 (diff) |
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants in dtrans.
Change-Id: Ia7e3c37681c763089dd31c861854a9b500996305
Reviewed-on: https://gerrit.libreoffice.org/17318
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'dtrans/source/win32/dnd/targetdropcontext.hxx')
-rw-r--r-- | dtrans/source/win32/dnd/targetdropcontext.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dtrans/source/win32/dnd/targetdropcontext.hxx b/dtrans/source/win32/dnd/targetdropcontext.hxx index 4b945737cc7b..488137b62643 100644 --- a/dtrans/source/win32/dnd/targetdropcontext.hxx +++ b/dtrans/source/win32/dnd/targetdropcontext.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_DTRANS_SOURCE_WIN32_DND_TARGETDROPCONTEXT_HXX #define INCLUDED_DTRANS_SOURCE_WIN32_DND_TARGETDROPCONTEXT_HXX -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/datatransfer/dnd/XDropTargetDropContext.hpp> #include "target.hxx" @@ -30,7 +30,7 @@ using namespace ::cppu; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::lang; -class TargetDropContext: public WeakImplHelper1<XDropTargetDropContext> +class TargetDropContext: public WeakImplHelper<XDropTargetDropContext> { // calls to the functions of XDropTargetDropContext are delegated // to non-interface functions of m_pDropTarget |