diff dwtx/jface/text/source/projection/ProjectionSummary.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/projection/ProjectionSummary.d	Sun Aug 24 01:13:39 2008 +0200
+++ b/dwtx/jface/text/source/projection/ProjectionSummary.d	Sun Aug 24 01:29:22 2008 +0200
@@ -60,7 +60,7 @@
         /**
          * Creates a new thread.
          */
-        public Summarizer() {
+        public this() {
             fProgressMonitor= new NullProgressMonitor(); // might be given by client in the future
             setDaemon(true);
             start();
@@ -112,7 +112,7 @@
      * @param projectionViewer the projection viewer
      * @param annotationAccess the annotation access
      */
-    public ProjectionSummary(ProjectionViewer projectionViewer, IAnnotationAccess annotationAccess) {
+    public this(ProjectionViewer projectionViewer, IAnnotationAccess annotationAccess) {
         super();
         fProjectionViewer= projectionViewer;
         fAnnotationAccess= annotationAccess;