diff dwt/dwthelper/FileInputStream.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents 5406a8f6526d
children 8d53428f9be0
line wrap: on
line diff
--- a/dwt/dwthelper/FileInputStream.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/dwthelper/FileInputStream.d	Mon May 05 00:12:38 2008 +0200
@@ -23,7 +23,7 @@
     private const int BUFFER_SIZE = 0x10000;
     private bool eof;
 
-    public this ( char[] name ){
+    public this ( String name ){
         conduit = new FileConduit( name );
         buffer = new ubyte[]( BUFFER_SIZE );
     }