comparison dwtx/jface/text/source/VerticalRuler.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
176 /** 176 /**
177 * Constructs a vertical ruler with the given width. 177 * Constructs a vertical ruler with the given width.
178 * 178 *
179 * @param width the width of the vertical ruler 179 * @param width the width of the vertical ruler
180 */ 180 */
181 public VerticalRuler(int width) { 181 public this(int width) {
182 this(width, null); 182 this(width, null);
183 } 183 }
184 184
185 /** 185 /**
186 * Constructs a vertical ruler with the given width and the given annotation 186 * Constructs a vertical ruler with the given width and the given annotation
188 * 188 *
189 * @param width the width of the vertical ruler 189 * @param width the width of the vertical ruler
190 * @param annotationAcccess the annotation access 190 * @param annotationAcccess the annotation access
191 * @since 3.0 191 * @since 3.0
192 */ 192 */
193 public VerticalRuler(int width, IAnnotationAccess annotationAcccess) { 193 public this(int width, IAnnotationAccess annotationAcccess) {
194 fWidth= width; 194 fWidth= width;
195 fAnnotationAccess= annotationAcccess; 195 fAnnotationAccess= annotationAcccess;
196 } 196 }
197 197
198 /* 198 /*