Changeset 212:ab60f3309436 for dwt/graphics/ImageLoader.d
- Timestamp:
- 05/04/08 18:12:38 (8 months ago)
- Files:
-
- dwt/graphics/ImageLoader.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/graphics/ImageLoader.d
r22 r212 24 24 import tango.core.Exception; 25 25 import tango.core.Array; 26 import dwt.dwthelper.utils; 26 27 27 28 … … 155 156 * </ul> 156 157 */ 157 public ImageData[] load( char[]filename) {158 public ImageData[] load(String filename) { 158 159 if (filename is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); 159 160 InputStream stream = null; … … 241 242 * </ul> 242 243 */ 243 public void save( char[]filename, int format) {244 public void save(String filename, int format) { 244 245 if (filename is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); 245 246 OutputStream stream = null;
