summaryrefslogtreecommitdiff
path: root/dtrans/source/win32/workbench
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-07-23 16:20:52 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-07-28 07:29:31 +0000
commit7e495e2b9e7b52ed169c936b63d960958db310cd (patch)
treebe9fade8b81fc2e1448870c4ab84e75f41ab880b /dtrans/source/win32/workbench
parentadbfe33377813b209bb4a7d7e4e9f737be033969 (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/workbench')
-rw-r--r--dtrans/source/win32/workbench/test_wincb.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/dtrans/source/win32/workbench/test_wincb.cxx b/dtrans/source/win32/workbench/test_wincb.cxx
index a2d0ff9ae7a6..8eb355de6d7b 100644
--- a/dtrans/source/win32/workbench/test_wincb.cxx
+++ b/dtrans/source/win32/workbench/test_wincb.cxx
@@ -26,8 +26,7 @@
#include <com/sun/star/datatransfer/clipboard/XClipboardEx.hpp>
#include <com/sun/star/datatransfer/clipboard/XFlushableClipboard.hpp>
#include <com/sun/star/lang/XComponent.hpp>
-#include <cppuhelper/implbase1.hxx>
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
#include <rtl/ustring.hxx>
#include <sal/types.h>
#include <osl/diagnose.h>
@@ -71,7 +70,7 @@ using namespace ::com::sun::star::lang;
Reference< XTransferable > rXTransfRead;
HANDLE g_hEvtThreadWakeup;
-class CClipboardListener : public WeakImplHelper1 < XClipboardListener >
+class CClipboardListener : public WeakImplHelper < XClipboardListener >
{
public:
~CClipboardListener( );
@@ -96,7 +95,7 @@ void SAL_CALL CClipboardListener::changedContents( const ClipboardEvent& event )
//MessageBox( NULL, TEXT("Clipboard content changed"), TEXT("Info"), MB_OK | MB_ICONINFORMATION );
}
-class CTransferable : public WeakImplHelper2< XClipboardOwner, XTransferable >
+class CTransferable : public WeakImplHelper< XClipboardOwner, XTransferable >
{
public:
CTransferable( );