comparison dwtx/jface/text/AbstractDocument.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
222 /** 222 /**
223 * Creates a new bundle object. 223 * Creates a new bundle object.
224 * @param owner the document listener owning the replace operation 224 * @param owner the document listener owning the replace operation
225 * @param replace the replace operation 225 * @param replace the replace operation
226 */ 226 */
227 RegisteredReplace(IDocumentListener owner, IDocumentExtension.IReplace replace) { 227 this(IDocumentListener owner, IDocumentExtension.IReplace replace) {
228 fOwner= owner; 228 fOwner= owner;
229 fReplace= replace; 229 fReplace= replace;
230 } 230 }
231 } 231 }
232 232
326 * The default constructor does not perform any configuration 326 * The default constructor does not perform any configuration
327 * but leaves it to the clients who must first initialize the 327 * but leaves it to the clients who must first initialize the
328 * implementation plug-ins and then call <code>completeInitialization</code>. 328 * implementation plug-ins and then call <code>completeInitialization</code>.
329 * Results in the construction of an empty document. 329 * Results in the construction of an empty document.
330 */ 330 */
331 protected AbstractDocument() { 331 protected this() {
332 fModificationStamp= getNextModificationStamp(); 332 fModificationStamp= getNextModificationStamp();
333 } 333 }
334 334
335 335
336 /** 336 /**