comparison dwtx/text/edits/UndoEdit.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 * @since 3.0 33 * @since 3.0
34 * @noinstantiate This class is not intended to be instantiated by clients. 34 * @noinstantiate This class is not intended to be instantiated by clients.
35 */ 35 */
36 public final class UndoEdit : TextEdit { 36 public final class UndoEdit : TextEdit {
37 37
38 UndoEdit() { 38 this() {
39 super(0, Integer.MAX_VALUE); 39 super(0, Integer.MAX_VALUE);
40 } 40 }
41 41
42 private UndoEdit(UndoEdit other) { 42 private this(UndoEdit other) {
43 super(other); 43 super(other);
44 } 44 }
45 45
46 /* 46 /*
47 * @see dwtx.text.edits.TextEdit#internalAdd(dwtx.text.edits.TextEdit) 47 * @see dwtx.text.edits.TextEdit#internalAdd(dwtx.text.edits.TextEdit)