Changeset 212:ab60f3309436 for dwt/graphics/Image.d
- Timestamp:
- 05/04/08 18:12:38 (8 months ago)
- Files:
-
- dwt/graphics/Image.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/graphics/Image.d
r197 r212 595 595 * </ul> 596 596 */ 597 public this (Device device, char[]filename) {597 public this (Device device, String filename) { 598 598 if (device is null) device = Device.getDevice(); 599 599 if (device is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); … … 2124 2124 * @return a string representation of the receiver 2125 2125 */ 2126 override public char[]toString () {2126 override public String toString () { 2127 2127 if (isDisposed()) return "Image {*DISPOSED*}"; 2128 2128 return Format( "Image {{{}}", handle );
