summaryrefslogtreecommitdiff
path: root/dtrans/source/test/test_dtrans.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dtrans/source/test/test_dtrans.cxx')
-rw-r--r--dtrans/source/test/test_dtrans.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/dtrans/source/test/test_dtrans.cxx b/dtrans/source/test/test_dtrans.cxx
index 6c363b0abf36..5bc87e329e46 100644
--- a/dtrans/source/test/test_dtrans.cxx
+++ b/dtrans/source/test/test_dtrans.cxx
@@ -25,8 +25,7 @@
#include <com/sun/star/lang/XComponent.hpp>
#include <cppuhelper/servicefactory.hxx>
-#include <cppuhelper/implbase1.hxx>
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
#include <rtl/ustring.hxx>
#include <osl/diagnose.h>
@@ -64,7 +63,7 @@ const char * app = NULL;
// ClipboardOwner
-class ClipboardOwner : public WeakImplHelper1< XClipboardOwner >
+class ClipboardOwner : public WeakImplHelper< XClipboardOwner >
{
Reference< XClipboard > m_xClipboard;
Reference< XTransferable > m_xTransferable;
@@ -102,7 +101,7 @@ void SAL_CALL ClipboardOwner::lostOwnership( const Reference< XClipboard >& xCli
// ClipboardListener
-class ClipboardListener : public WeakImplHelper1< XClipboardListener >
+class ClipboardListener : public WeakImplHelper< XClipboardListener >
{
Reference< XClipboard > m_xClipboard;
Reference< XTransferable > m_xTransferable;
@@ -151,7 +150,7 @@ void SAL_CALL ClipboardListener::disposing( const EventObject& event )
// StringTransferable
-class StringTransferable : public WeakImplHelper2< XClipboardOwner, XTransferable >
+class StringTransferable : public WeakImplHelper< XClipboardOwner, XTransferable >
{
public:
StringTransferable( );