Changeset 238:380bad9f6852 for dwt/graphics/Image.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/graphics/Image.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/graphics/Image.d
r216 r238 549 549 * </ul> 550 550 */ 551 public this(Device device, char[]filename) {551 public this(Device device, String filename) { 552 552 if (device is null) device = Device.getDevice(); 553 553 if (device is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); … … 1192 1192 * @return a string representation of the receiver 1193 1193 */ 1194 public override char[]toString () {1194 public override String toString () { 1195 1195 if (isDisposed()) return "Image {*DISPOSED*}"; 1196 1196 return Format( "Image {{{}}", pixmap);
