Show
Ignore:
Timestamp:
05/04/08 18:42:55 (4 years ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted char[] to String

Files:

Legend:

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

    r195 r238  
    1212 *******************************************************************************/ 
    1313module dwt.graphics.ImageLoader; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    155157 * </ul> 
    156158 */ 
    157 public ImageData[] load(char[] filename) { 
     159public ImageData[] load(String filename) { 
    158160    if (filename is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); 
    159161    InputStream stream = null; 
     
    241243 * </ul> 
    242244 */ 
    243 public void save(char[] filename, int format) { 
     245public void save(String filename, int format) { 
    244246    if (filename is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); 
    245247    OutputStream stream = null;