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

    r34 r212  
    1717import dwt.internal.DWTEventObject; 
    1818import tango.text.convert.Format; 
     19import dwt.dwthelper.utils; 
    1920 
    2021/** 
     
    4041    public int width, height;       // OUT 
    4142    public int detail;          // IN/OUT 
    42     public char[] result;           // OUT 
     43    public String result;           // OUT 
    4344    public Object children[];       // [OUT] 
    4445 
     
    6061 * @return a string representation of the event 
    6162 */ 
    62 public char[] toString () { 
     63public String toString () { 
    6364    return Format( "AccessibleControlEvent {childID={} accessible={} x={} y={} width={} heigth={} detail={} result={}", 
    6465        childID, accessible, x, y, width, height, detail, result);