# HG changeset patch # User Jacob Carlborg # Date 1230731315 -3600 # Node ID b0e5cad3d9286f1cc3c607c9b4f02849fe6a1b85 # Parent 6b8fcfda8b578e15b06c60d2d6c41709a3fc1001 Ported dwt.dnd.TableDragSourceEffect diff -r 6b8fcfda8b57 -r b0e5cad3d928 dwt/dnd/TableDragSourceEffect.d --- a/dwt/dnd/TableDragSourceEffect.d Wed Dec 31 14:48:00 2008 +0100 +++ b/dwt/dnd/TableDragSourceEffect.d Wed Dec 31 14:48:35 2008 +0100 @@ -7,6 +7,9 @@ * * Contributors: * IBM Corporation - initial API and implementation + * + * Port to the D programming language: + * Jacob Carlborg *******************************************************************************/ module dwt.dnd.TableDragSourceEffect; @@ -14,6 +17,8 @@ import dwt.widgets.Table; +import dwt.dnd.DragSourceEffect; + /** * This class provides default implementations to display a source image * when a drag is initiated from a Table. @@ -32,14 +37,14 @@ * * @since 3.3 */ -public class TableDragSourceEffect extends DragSourceEffect { +public class TableDragSourceEffect : DragSourceEffect { /** * Creates a new TableDragSourceEffect to handle drag effect * from the specified Table. * * @param table the Table that the user clicks on to initiate the drag */ - public TableDragSourceEffect(Table table) { + public this(Table table) { super(table); } }