diff dwt/accessibility/AccessibleControlEvent.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents 943a86053d88
children fd9c62a2998e
line wrap: on
line diff
--- a/dwt/accessibility/AccessibleControlEvent.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/accessibility/AccessibleControlEvent.d	Mon May 05 00:12:38 2008 +0200
@@ -16,6 +16,7 @@
 
 import dwt.internal.DWTEventObject;
 import tango.text.convert.Format;
+import dwt.dwthelper.utils;
 
 /**
  * Instances of this class are sent as a result of
@@ -39,7 +40,7 @@
     public int x, y;                // IN/OUT
     public int width, height;       // OUT
     public int detail;          // IN/OUT
-    public char[] result;           // OUT
+    public String result;           // OUT
     public Object children[];       // [OUT]
 
     //static final long serialVersionUID = 3257281444169529141L;
@@ -59,7 +60,7 @@
  *
  * @return a string representation of the event
  */
-public char[] toString () {
+public String toString () {
     return Format( "AccessibleControlEvent {childID={} accessible={} x={} y={} width={} heigth={} detail={} result={}",
         childID, accessible, x, y, width, height, detail, result);
 }