comparison dwtx/jface/text/source/LineNumberChangeRulerColumn.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
126 /** 126 /**
127 * Creates a new instance. 127 * Creates a new instance.
128 * 128 *
129 * @param sharedColors the shared colors provider to use 129 * @param sharedColors the shared colors provider to use
130 */ 130 */
131 public LineNumberChangeRulerColumn(ISharedTextColors sharedColors) { 131 public this(ISharedTextColors sharedColors) {
132 Assert.isNotNull(sharedColors); 132 Assert.isNotNull(sharedColors);
133 fRevisionPainter= new RevisionPainter(this, sharedColors); 133 fRevisionPainter= new RevisionPainter(this, sharedColors);
134 fDiffPainter= new DiffPainter(this, sharedColors); 134 fDiffPainter= new DiffPainter(this, sharedColors);
135 } 135 }
136 136