comparison dwtx/text/edits/CopyingRangeMarker.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
33 * offset and length. 33 * offset and length.
34 * 34 *
35 * @param offset the marker's offset 35 * @param offset the marker's offset
36 * @param length the marker's length 36 * @param length the marker's length
37 */ 37 */
38 public CopyingRangeMarker(int offset, int length) { 38 public this(int offset, int length) {
39 super(offset, length); 39 super(offset, length);
40 } 40 }
41 41
42 /* 42 /*
43 * Copy constructor 43 * Copy constructor
44 */ 44 */
45 private CopyingRangeMarker(CopyingRangeMarker other) { 45 private this(CopyingRangeMarker other) {
46 super(other); 46 super(other);
47 fText= other.fText; 47 fText= other.fText;
48 } 48 }
49 49
50 /* 50 /*