Changeset 212:ab60f3309436 for dwt/accessibility/AccessibleControlEvent.d
- Timestamp:
- 05/04/08 18:12:38 (7 months ago)
- Files:
-
- dwt/accessibility/AccessibleControlEvent.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/accessibility/AccessibleControlEvent.d
r34 r212 17 17 import dwt.internal.DWTEventObject; 18 18 import tango.text.convert.Format; 19 import dwt.dwthelper.utils; 19 20 20 21 /** … … 40 41 public int width, height; // OUT 41 42 public int detail; // IN/OUT 42 public char[]result; // OUT43 public String result; // OUT 43 44 public Object children[]; // [OUT] 44 45 … … 60 61 * @return a string representation of the event 61 62 */ 62 public char[]toString () {63 public String toString () { 63 64 return Format( "AccessibleControlEvent {childID={} accessible={} x={} y={} width={} heigth={} detail={} result={}", 64 65 childID, accessible, x, y, width, height, detail, result);
