comparison dwtx/text/edits/CopyTargetEdit.d @ 130:b56e9be9fe88

ctors to this
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 00:30:47 +0200
parents eb30df5ca28b
children c4fb132a086c
comparison
equal deleted inserted replaced
129:eb30df5ca28b 130:b56e9be9fe88
53 * Constructs an new copy target edit 53 * Constructs an new copy target edit
54 * 54 *
55 * @param offset the edit's offset 55 * @param offset the edit's offset
56 * @param source the corresponding source edit 56 * @param source the corresponding source edit
57 */ 57 */
58 public CopyTargetEdit(int offset, CopySourceEdit source) { 58 public this(int offset, CopySourceEdit source) {
59 this(offset); 59 this(offset);
60 setSourceEdit(source); 60 setSourceEdit(source);
61 } 61 }
62 62
63 /* 63 /*
64 * Copy constructor 64 * Copy constructor
65 */ 65 */
66 private CopyTargetEdit(CopyTargetEdit other) { 66 private this(CopyTargetEdit other) {
67 super(other); 67 super(other);
68 } 68 }
69 69
70 /** 70 /**
71 * Returns the associated source edit or <code>null</code> 71 * Returns the associated source edit or <code>null</code>