comparison dwtx/jface/text/SlaveDocumentEvent.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
173 * @param offset the offset in the slave document 173 * @param offset the offset in the slave document
174 * @param length the length in the slave document 174 * @param length the length in the slave document
175 * @param text the substitution text 175 * @param text the substitution text
176 * @param masterEvent the master document event 176 * @param masterEvent the master document event
177 */ 177 */
178 public SlaveDocumentEvent(IDocument doc, int offset, int length, String text, DocumentEvent masterEvent) { 178 public this(IDocument doc, int offset, int length, String text, DocumentEvent masterEvent) {
179 super(doc, offset, length, text); 179 super(doc, offset, length, text);
180 fMasterEvent= masterEvent; 180 fMasterEvent= masterEvent;
181 } 181 }
182 182
183 /** 183 /**