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/events/TraverseEvent.d

    r86 r212  
    1818 
    1919import tango.text.convert.Format; 
     20import dwt.dwthelper.utils; 
     21 
    2022/** 
    2123 * Instances of this class are sent as a result of 
     
    132134 * @return a string representation of the event 
    133135 */ 
    134 public override char[] toString() { 
     136public override String toString() { 
    135137    return Format( "{} detail={}}", super.toString[ 0 .. $-2 ], detail ); 
    136138}