diff dwt/dwthelper/FileInputStream.d @ 238:380bad9f6852

reverted char[] to String
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:42:55 +0200
parents 0c78fa47d476
children a2166f25ce17
line wrap: on
line diff
--- a/dwt/dwthelper/FileInputStream.d	Sat Apr 26 10:01:30 2008 +0200
+++ b/dwt/dwthelper/FileInputStream.d	Mon May 05 00:42:55 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 );
     }