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/AccessibleControlEvent.d

    r150 r238  
    1212 *******************************************************************************/ 
    1313module dwt.accessibility.AccessibleControlEvent; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517import dwt.accessibility.Accessible; 
     
    4042    public int width, height;       // OUT 
    4143    public int detail;          // IN/OUT 
    42     public char[] result;           // OUT 
     44    public String result;           // OUT 
    4345    public Object children[];       // [OUT] 
    4446 
     
    6062 * @return a string representation of the event 
    6163 */ 
    62 public override char[] toString () { 
     64public override String toString () { 
    6365    return Format( "AccessibleControlEvent {childID={} accessible={} x={} y={} width={} heigth={} detail={} result={}", 
    6466        childID, accessible, x, y, width, height, detail, result);