Show
Ignore:
Timestamp:
05/04/08 18:42:55 (4 years ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted char[] to String

Files:

Legend:

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

    r216 r238  
    549549 * </ul> 
    550550 */ 
    551 public this(Device device, char[] filename) { 
     551public this(Device device, String filename) { 
    552552    if (device is null) device = Device.getDevice(); 
    553553    if (device is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); 
     
    11921192 * @return a string representation of the receiver 
    11931193 */ 
    1194 public override char[] toString () { 
     1194public override String toString () { 
    11951195    if (isDisposed()) return "Image {*DISPOSED*}"; 
    11961196    return Format( "Image {{{}}", pixmap);