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

    r150 r238  
    1212 *******************************************************************************/ 
    1313module dwt.events.VerifyEvent; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    3840     * be inserted or deleted. 
    3941     */ 
    40     public char[] text; 
     42    public String text; 
    4143 
    4244    //static final long serialVersionUID = 3257003246269577014L; 
     
    6163 * @return a string representation of the event 
    6264 */ 
    63 public override char[] toString() { 
     65public override String toString() { 
    6466    return Format( "{} start={} end={} text={}}", super.toString[ 0 .. $-2 ], start, end, text ); 
    6567}