comparison dwt/browser/InputStream.d @ 5:1a8b3cb347e0

Fix Ctors to 'this'
author Frank Benoit <benoit@tionex.de>
date Wed, 27 Aug 2008 14:02:31 +0200
parents 380af2bdd8e5
children e831403a80a9
comparison
equal deleted inserted replaced
4:ab8b5765e3d1 5:1a8b3cb347e0
24 int refCount = 0; 24 int refCount = 0;
25 25
26 byte[] buffer; 26 byte[] buffer;
27 int index = 0; 27 int index = 0;
28 28
29 InputStream (byte[] buffer) { 29 this (byte[] buffer) {
30 this.buffer = buffer; 30 this.buffer = buffer;
31 index = 0; 31 index = 0;
32 createCOMInterfaces (); 32 createCOMInterfaces ();
33 } 33 }
34 34