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/widgets/Event.d

    r236 r238  
    1212 *******************************************************************************/ 
    1313module dwt.widgets.Event; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517import dwt.graphics.GC; 
     
    181183     * be inserted or deleted. 
    182184     */ 
    183     public char[] text; 
     185    public String text; 
    184186 
    185187    /** 
     
    222224 * @return a string representation of the event 
    223225 */ 
    224 public override char[] toString () { 
     226public override String toString () { 
    225227    return Format( "Event {{type={} {} time={} data={} x={} y={} width={} height={} detail={}}", 
    226228        type, widget, time, data, x, y, width, height, detail );  //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$