diff dwtx/text/edits/MultiTextEdit.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
line wrap: on
line diff
--- a/dwtx/text/edits/MultiTextEdit.d	Sat Aug 23 19:10:48 2008 +0200
+++ b/dwtx/text/edits/MultiTextEdit.d	Sun Aug 24 00:30:47 2008 +0200
@@ -46,7 +46,7 @@
      * any children its offset is set to the parent's offset
      * and its length is set to 0.
      */
-    public MultiTextEdit() {
+    public this() {
         super(0, Integer.MAX_VALUE);
         fDefined= false;
     }
@@ -61,7 +61,7 @@
      * @see TextEdit#addChild(TextEdit)
      * @see TextEdit#addChildren(TextEdit[])
      */
-    public MultiTextEdit(int offset, int length) {
+    public this(int offset, int length) {
         super(offset, length);
         fDefined= true;
     }
@@ -69,7 +69,7 @@
     /*
      * Copy constructor.
      */
-    protected MultiTextEdit(MultiTextEdit other) {
+    protected this(MultiTextEdit other) {
         super(other);
     }