Changeset 238:380bad9f6852 for dwt/graphics/ImageLoader.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/graphics/ImageLoader.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/graphics/ImageLoader.d
r195 r238 12 12 *******************************************************************************/ 13 13 module dwt.graphics.ImageLoader; 14 15 import dwt.dwthelper.utils; 14 16 15 17 … … 155 157 * </ul> 156 158 */ 157 public ImageData[] load( char[]filename) {159 public ImageData[] load(String filename) { 158 160 if (filename is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); 159 161 InputStream stream = null; … … 241 243 * </ul> 242 244 */ 243 public void save( char[]filename, int format) {245 public void save(String filename, int format) { 244 246 if (filename is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); 245 247 OutputStream stream = null;
