comparison dwtx/jface/internal/text/html/HTML2TextReader.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
94 * 94 *
95 * @param reader the reader 95 * @param reader the reader
96 * @param presentation If not <code>null</code>, formattings will be applied to 96 * @param presentation If not <code>null</code>, formattings will be applied to
97 * the presentation. 97 * the presentation.
98 */ 98 */
99 public HTML2TextReader(Reader reader, TextPresentation presentation) { 99 public this(Reader reader, TextPresentation presentation) {
100 super(new PushbackReader(reader)); 100 super(new PushbackReader(reader));
101 fTextPresentation= presentation; 101 fTextPresentation= presentation;
102 } 102 }
103 103
104 public int read() throws IOException { 104 public int read() throws IOException {