comparison dwtx/text/edits/DeleteEdit.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
31 * Constructs a new delete edit. 31 * Constructs a new delete edit.
32 * 32 *
33 * @param offset the offset of the range to replace 33 * @param offset the offset of the range to replace
34 * @param length the length of the range to replace 34 * @param length the length of the range to replace
35 */ 35 */
36 public DeleteEdit(int offset, int length) { 36 public this(int offset, int length) {
37 super(offset, length); 37 super(offset, length);
38 } 38 }
39 39
40 /* 40 /*
41 * Copy constructor 41 * Copy constructor
42 */ 42 */
43 private DeleteEdit(DeleteEdit other) { 43 private this(DeleteEdit other) {
44 super(other); 44 super(other);
45 } 45 }
46 46
47 /* 47 /*
48 * @see TextEdit#doCopy 48 * @see TextEdit#doCopy