comparison dwtx/jface/text/reconciler/DirtyRegion.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 1a5b8f8129df
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
60 * @param offset the offset within the document where the change occurred 60 * @param offset the offset within the document where the change occurred
61 * @param length the length of the text within the document that changed 61 * @param length the length of the text within the document that changed
62 * @param type the type of change that this region represents: {@link #INSERT} {@link #REMOVE} 62 * @param type the type of change that this region represents: {@link #INSERT} {@link #REMOVE}
63 * @param text the substitution text 63 * @param text the substitution text
64 */ 64 */
65 public DirtyRegion(int offset, int length, String type, String text) { 65 public this(int offset, int length, String type, String text) {
66 fOffset= offset; 66 fOffset= offset;
67 fLength= length; 67 fLength= length;
68 fType= normalizeTypeValue(type); 68 fType= normalizeTypeValue(type);
69 fText= text; 69 fText= text;
70 } 70 }