Changeset 212:ab60f3309436 for dwt/accessibility/AccessibleEvent.d
- Timestamp:
- 05/04/08 18:12:38 (7 months ago)
- Files:
-
- dwt/accessibility/AccessibleEvent.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/accessibility/AccessibleEvent.d
r48 r212 16 16 import dwt.internal.DWTEventObject; 17 17 import tango.text.convert.Format; 18 import dwt.dwthelper.utils; 18 19 19 20 /** … … 46 47 * the childID specified by the client. 47 48 */ 48 public char[]result;49 public String result; 49 50 50 51 //static final long serialVersionUID = 3257567304224026934L; … … 65 66 * @return a string representation of the event 66 67 */ 67 override public char[]toString () {68 override public String toString () { 68 69 return Format( "AccessibleEvent {childID={} result={}}", childID, result ); 69 70 }
