comparison dwtx/jface/text/source/MatchingCharacterPainter.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
132 * exclusive access to the given pair matcher. 132 * exclusive access to the given pair matcher.
133 * 133 *
134 * @param sourceViewer 134 * @param sourceViewer
135 * @param matcher 135 * @param matcher
136 */ 136 */
137 public MatchingCharacterPainter(ISourceViewer sourceViewer, ICharacterPairMatcher matcher) { 137 public this(ISourceViewer sourceViewer, ICharacterPairMatcher matcher) {
138 fSourceViewer= sourceViewer; 138 fSourceViewer= sourceViewer;
139 fMatcher= matcher; 139 fMatcher= matcher;
140 fTextWidget= sourceViewer.getTextWidget(); 140 fTextWidget= sourceViewer.getTextWidget();
141 } 141 }
142 142