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/ImageLoaderEvent.d

    r150 r238  
    1212 *******************************************************************************/ 
    1313module dwt.graphics.ImageLoaderEvent; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    8688 * @return a string representation of the event 
    8789 */ 
    88 public override char[] toString () { 
     90public override String toString () { 
    8991    return Format( "ImageLoaderEvent {source={} imageData={} incrementCount={} endOfImage={}}", source, imageData, incrementCount, endOfImage); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ 
    9092}