Show
Ignore:
Timestamp:
05/04/08 18:12:38 (8 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted the char[] to String and use the an alias.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/graphics/ImageLoader.d

    r22 r212  
    2424import tango.core.Exception; 
    2525import tango.core.Array; 
     26import dwt.dwthelper.utils; 
    2627 
    2728 
     
    155156 * </ul> 
    156157 */ 
    157 public ImageData[] load(char[] filename) { 
     158public ImageData[] load(String filename) { 
    158159    if (filename is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); 
    159160    InputStream stream = null; 
     
    241242 * </ul> 
    242243 */ 
    243 public void save(char[] filename, int format) { 
     244public void save(String filename, int format) { 
    244245    if (filename is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); 
    245246    OutputStream stream = null;