Show
Ignore:
Timestamp:
05/04/08 18:12:38 (8 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted the char[] to String and use the an alias.

Files:

Legend:

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

    r197 r212  
    595595 * </ul> 
    596596 */ 
    597 public this (Device device, char[] filename) { 
     597public this (Device device, String filename) { 
    598598    if (device is null) device = Device.getDevice(); 
    599599    if (device is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); 
     
    21242124 * @return a string representation of the receiver 
    21252125 */ 
    2126 override public char[] toString () { 
     2126override public String toString () { 
    21272127    if (isDisposed()) return "Image {*DISPOSED*}"; 
    21282128    return Format( "Image {{{}}", handle );