diff 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
line wrap: on
line diff
--- a/dwtx/text/edits/CopyingRangeMarker.d	Sat Aug 23 19:10:48 2008 +0200
+++ b/dwtx/text/edits/CopyingRangeMarker.d	Sun Aug 24 00:30:47 2008 +0200
@@ -35,14 +35,14 @@
      * @param offset the marker's offset
      * @param length the marker's length
      */
-    public CopyingRangeMarker(int offset, int length) {
+    public this(int offset, int length) {
         super(offset, length);
     }
 
     /*
      * Copy constructor
      */
-    private CopyingRangeMarker(CopyingRangeMarker other) {
+    private this(CopyingRangeMarker other) {
         super(other);
         fText= other.fText;
     }