diff dwt/graphics/ImageDataLoader.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 5f2e72114476
children
line wrap: on
line diff
--- a/dwt/graphics/ImageDataLoader.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/graphics/ImageDataLoader.d	Mon May 05 00:12:38 2008 +0200
@@ -16,6 +16,7 @@
 public import dwt.dwthelper.InputStream;
 
 import dwt.graphics.ImageLoader;
+import dwt.dwthelper.utils;
 
 /**
  * Internal class that separates ImageData from ImageLoader
@@ -27,7 +28,7 @@
         return (new ImageLoader()).load(stream);
     }
 
-    public static ImageData[] load(char[] filename) {
+    public static ImageData[] load(String filename) {
         return (new ImageLoader()).load(filename);
     }