comparison dwtx/jface/text/source/LineRange.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
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
91 * Creates a new line range with the given specification. 91 * Creates a new line range with the given specification.
92 * 92 *
93 * @param startLine the start line 93 * @param startLine the start line
94 * @param numberOfLines the number of lines 94 * @param numberOfLines the number of lines
95 */ 95 */
96 public LineRange(int startLine, int numberOfLines) { 96 public this(int startLine, int numberOfLines) {
97 fStartLine= startLine; 97 fStartLine= startLine;
98 fNumberOfLines= numberOfLines; 98 fNumberOfLines= numberOfLines;
99 } 99 }
100 100
101 /* 101 /*