summaryrefslogtreecommitdiff
path: root/dtrans
diff options
context:
space:
mode:
authorStephan Schäfer <ssa@openoffice.org>2001-07-04 08:08:07 +0000
committerStephan Schäfer <ssa@openoffice.org>2001-07-04 08:08:07 +0000
commit57edb072f7778ce4c300b7b046fcbd181d484efe (patch)
tree0e39f4d92e1a79a6f8147eaea28c7646bd28e31d /dtrans
parent0efcd14c6014140b0e0fa305bb8e6a963f8dfbbc (diff)
#88454# removeListener actually performed add
Diffstat (limited to 'dtrans')
-rw-r--r--dtrans/source/win32/dnd/target.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dtrans/source/win32/dnd/target.cxx b/dtrans/source/win32/dnd/target.cxx
index 0960108a0330..bc46346d1f5a 100644
--- a/dtrans/source/win32/dnd/target.cxx
+++ b/dtrans/source/win32/dnd/target.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: target.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: obr $ $Date: 2001-06-07 07:10:36 $
+ * last change: $Author: ssa $ $Date: 2001-07-04 09:08:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -201,7 +201,7 @@ void SAL_CALL DropTarget::addDropTargetListener( const Reference< XDropTargetLis
void SAL_CALL DropTarget::removeDropTargetListener( const Reference< XDropTargetListener >& dtl )
throw(RuntimeException)
{
- rBHelper.addListener( ::getCppuType( &dtl ), dtl );
+ rBHelper.removeListener( ::getCppuType( &dtl ), dtl );
}
sal_Bool SAL_CALL DropTarget::isActive( ) throw(RuntimeException)