comparison dwtx/jface/text/Region.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
171 * Create a new region. 171 * Create a new region.
172 * 172 *
173 * @param offset the offset of the region 173 * @param offset the offset of the region
174 * @param length the length of the region 174 * @param length the length of the region
175 */ 175 */
176 public Region(int offset, int length) { 176 public this(int offset, int length) {
177 fOffset= offset; 177 fOffset= offset;
178 fLength= length; 178 fLength= length;
179 } 179 }
180 180
181 /* 181 /*