Show
Ignore:
Timestamp:
05/04/08 18:12:38 (7 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/accessibility/AccessibleEvent.d

    r48 r212  
    1616import dwt.internal.DWTEventObject; 
    1717import tango.text.convert.Format; 
     18import dwt.dwthelper.utils; 
    1819 
    1920/** 
     
    4647     * the childID specified by the client. 
    4748     */ 
    48     public char[] result; 
     49    public String result; 
    4950 
    5051    //static final long serialVersionUID = 3257567304224026934L; 
     
    6566 * @return a string representation of the event 
    6667 */ 
    67 override public char[] toString () { 
     68override public String toString () { 
    6869    return Format( "AccessibleEvent {childID={} result={}}", childID, result ); 
    6970}