comparison dwtx/jface/internal/text/source/DiffPainter.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
98 * @param column the column that will delegate{@link #paint(GC, ILineRange) painting} to the 98 * @param column the column that will delegate{@link #paint(GC, ILineRange) painting} to the
99 * newly created painter. 99 * newly created painter.
100 * @param sharedColors a shared colors object to store shaded colors in, may be 100 * @param sharedColors a shared colors object to store shaded colors in, may be
101 * <code>null</code> 101 * <code>null</code>
102 */ 102 */
103 public DiffPainter(IVerticalRulerColumn column, ISharedTextColors sharedColors) { 103 public this(IVerticalRulerColumn column, ISharedTextColors sharedColors) {
104 Assert.isLegal(column !is null); 104 Assert.isLegal(column !is null);
105 fColumn= column; 105 fColumn= column;
106 fSharedColors= sharedColors; 106 fSharedColors= sharedColors;
107 } 107 }
108 108