diff dwtx/jface/text/source/AnnotationRulerColumn.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 51e6e63f930e
line wrap: on
line diff
--- a/dwtx/jface/text/source/AnnotationRulerColumn.d	Sun Aug 24 01:13:39 2008 +0200
+++ b/dwtx/jface/text/source/AnnotationRulerColumn.d	Sun Aug 24 01:29:22 2008 +0200
@@ -174,7 +174,7 @@
         Annotation annotation;
         Position position;
 
-        Tuple(Annotation annotation, Position position) {
+        this(Annotation annotation, Position position) {
             this.annotation= annotation;
             this.position= position;
         }
@@ -271,7 +271,7 @@
      * @param annotationAccess the annotation access
      * @since 3.0
      */
-    public AnnotationRulerColumn(IAnnotationModel model, int width, IAnnotationAccess annotationAccess) {
+    public this(IAnnotationModel model, int width, IAnnotationAccess annotationAccess) {
         this(width, annotationAccess);
         fAllowSetModel= false;
         fModel= model;
@@ -285,7 +285,7 @@
      * @param annotationAccess the annotation access
      * @since 3.0
      */
-    public AnnotationRulerColumn(int width, IAnnotationAccess annotationAccess) {
+    public this(int width, IAnnotationAccess annotationAccess) {
         fWidth= width;
         if (annotationAccess instanceof IAnnotationAccessExtension)
             fAnnotationAccessExtension= (IAnnotationAccessExtension) annotationAccess;
@@ -297,7 +297,7 @@
      * @param model the annotation model to get the annotations from
      * @param width the width of the vertical ruler
      */
-    public AnnotationRulerColumn(IAnnotationModel model, int width) {
+    public this(IAnnotationModel model, int width) {
         fWidth= width;
         fAllowSetModel= false;
         fModel= model;
@@ -309,7 +309,7 @@
      *
      * @param width the width of the vertical ruler
      */
-    public AnnotationRulerColumn(int width) {
+    public this(int width) {
         fWidth= width;
     }