summaryrefslogtreecommitdiff
path: root/sfx2/source
diff options
context:
space:
mode:
authorPeter Burow <pb@openoffice.org>2002-08-30 08:27:41 +0000
committerPeter Burow <pb@openoffice.org>2002-08-30 08:27:41 +0000
commitb7eab2cf1772412671a02eec152939687aa86aa3 (patch)
tree80fb8f803320b1c6c3ac0bf50b079fe15ff6d74e /sfx2/source
parent6039c4ebc193ff0a2d74c43d176d46e2e459433c (diff)
fix: #102729# D&D: call base class if necessary
Diffstat (limited to 'sfx2/source')
-rw-r--r--sfx2/source/dialog/templdlg.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx
index 69f2eed4a476..fae41087cbed 100644
--- a/sfx2/source/dialog/templdlg.cxx
+++ b/sfx2/source/dialog/templdlg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: templdlg.cxx,v $
*
- * $Revision: 1.27 $
+ * $Revision: 1.28 $
*
- * last change: $Author: iha $ $Date: 2002-08-09 13:30:12 $
+ * last change: $Author: pb $ $Date: 2002-08-30 09:27:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -301,7 +301,7 @@ sal_Int8 DropListBox_Impl::AcceptDrop( const AcceptDropEvent& rEvt )
return DND_ACTION_COPY;
}
- return DND_ACTION_NONE;
+ return SvTreeListBox::AcceptDrop( rEvt );
}
//-------------------------------------------------------------------------
@@ -343,7 +343,7 @@ sal_Int8 DropListBox_Impl::ExecuteDrop( const ExecuteDropEvent& rEvt )
}
if ( !bFormatFound )
- PostUserEvent( LINK( this, DropListBox_Impl, OnAsyncExecuteError ) );
+ return SvTreeListBox::ExecuteDrop( rEvt );
}
return nRet;