comparison 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
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
58 private bool fReset= true; 58 private bool fReset= true;
59 59
60 /** 60 /**
61 * Creates a new thread. 61 * Creates a new thread.
62 */ 62 */
63 public Summarizer() { 63 public this() {
64 fProgressMonitor= new NullProgressMonitor(); // might be given by client in the future 64 fProgressMonitor= new NullProgressMonitor(); // might be given by client in the future
65 setDaemon(true); 65 setDaemon(true);
66 start(); 66 start();
67 } 67 }
68 68
110 * Creates a new projection summary. 110 * Creates a new projection summary.
111 * 111 *
112 * @param projectionViewer the projection viewer 112 * @param projectionViewer the projection viewer
113 * @param annotationAccess the annotation access 113 * @param annotationAccess the annotation access
114 */ 114 */
115 public ProjectionSummary(ProjectionViewer projectionViewer, IAnnotationAccess annotationAccess) { 115 public this(ProjectionViewer projectionViewer, IAnnotationAccess annotationAccess) {
116 super(); 116 super();
117 fProjectionViewer= projectionViewer; 117 fProjectionViewer= projectionViewer;
118 fAnnotationAccess= annotationAccess; 118 fAnnotationAccess= annotationAccess;
119 } 119 }
120 120