comparison dwtx/jface/text/source/AnnotationModelEvent.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
131 /** 131 /**
132 * Creates a new annotation model event for the given model. 132 * Creates a new annotation model event for the given model.
133 * 133 *
134 * @param model the model 134 * @param model the model
135 */ 135 */
136 public AnnotationModelEvent(IAnnotationModel model) { 136 public this(IAnnotationModel model) {
137 this(model, true); 137 this(model, true);
138 } 138 }
139 139
140 /** 140 /**
141 * Creates a new annotation model event for the given model. 141 * Creates a new annotation model event for the given model.
142 * 142 *
143 * @param model the model 143 * @param model the model
144 * @param isWorldChange <code>true</code> if world change 144 * @param isWorldChange <code>true</code> if world change
145 * @since 3.0 145 * @since 3.0
146 */ 146 */
147 public AnnotationModelEvent(IAnnotationModel model, bool isWorldChange) { 147 public this(IAnnotationModel model, bool isWorldChange) {
148 fAnnotationModel= model; 148 fAnnotationModel= model;
149 fIsWorldChange= isWorldChange; 149 fIsWorldChange= isWorldChange;
150 } 150 }
151 151
152 /** 152 /**