comparison dwtx/jface/text/revisions/RevisionEvent.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 75302ef3f92f
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
41 /** 41 /**
42 * Creates a new event. 42 * Creates a new event.
43 * 43 *
44 * @param information the revision info 44 * @param information the revision info
45 */ 45 */
46 public RevisionEvent(RevisionInformation information) { 46 public this(RevisionInformation information) {
47 Assert.isLegal(information !is null); 47 Assert.isLegal(information !is null);
48 fInformation= information; 48 fInformation= information;
49 } 49 }
50 50
51 /** 51 /**