Changeset 238:380bad9f6852 for dwt/accessibility/AccessibleControlEvent.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/accessibility/AccessibleControlEvent.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/accessibility/AccessibleControlEvent.d
r150 r238 12 12 *******************************************************************************/ 13 13 module dwt.accessibility.AccessibleControlEvent; 14 15 import dwt.dwthelper.utils; 14 16 15 17 import dwt.accessibility.Accessible; … … 40 42 public int width, height; // OUT 41 43 public int detail; // IN/OUT 42 public char[]result; // OUT44 public String result; // OUT 43 45 public Object children[]; // [OUT] 44 46 … … 60 62 * @return a string representation of the event 61 63 */ 62 public override char[]toString () {64 public override String toString () { 63 65 return Format( "AccessibleControlEvent {childID={} accessible={} x={} y={} width={} heigth={} detail={} result={}", 64 66 childID, accessible, x, y, width, height, detail, result);
