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/accessibility/AccessibleEvent.d

    r72 r238  
    1212 *******************************************************************************/ 
    1313module dwt.accessibility.AccessibleEvent; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    4648     * the childID specified by the client. 
    4749     */ 
    48     public char[] result; 
     50    public String result; 
    4951 
    5052    //static final long serialVersionUID = 3257567304224026934L; 
     
    6567 * @return a string representation of the event 
    6668 */ 
    67 public char[] toString () { 
     69public String toString () { 
    6870    return Format( "AccessibleEvent {childID={} result={}}", childID, result ); 
    6971}