diff dwt/accessibility/AccessibleControlEvent.d @ 37:642f460a0908

Fixed a lot of compile errors, a "hello world" app compiles now
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Fri, 10 Oct 2008 12:29:48 +0200
parents f565d3a95c0a
children d8635bb48c7c
line wrap: on
line diff
--- a/dwt/accessibility/AccessibleControlEvent.d	Tue Oct 07 12:56:18 2008 +0200
+++ b/dwt/accessibility/AccessibleControlEvent.d	Fri Oct 10 12:29:48 2008 +0200
@@ -13,9 +13,12 @@
  *******************************************************************************/
 module dwt.accessibility.AccessibleControlEvent;
 
+import dwt.internal.DWTEventObject;
+
+import tango.text.convert.Format;
+
 import dwt.accessibility.Accessible;
 import dwt.dwthelper.utils;
-import dwt.internal.DWTEventObject;
 
 /**
  * Instances of this class are sent as a result of
@@ -60,14 +63,14 @@
      * @return a String representation of the event
      */
     public String toString () {
-        return "AccessibleControlEvent {childID=" + childID + //$NON-NLS-1$
-        " accessible=" + accessible + //$NON-NLS-1$
-        " x=" + x + //$NON-NLS-1$
-        " y=" + y + //$NON-NLS-1$
-        " width=" + width + //$NON-NLS-1$
-        " height=" + height + //$NON-NLS-1$
-        " detail=" + detail + //$NON-NLS-1$
-        " result=" + result + //$NON-NLS-1$
-        "}"; //$NON-NLS-1$
+        return Format("AccessibleControlEvent {childID={}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}" , childID , //$NON-NLS-1$
+          " accessible=" , accessible , //$NON-NLS-1$
+          " x=" , x , //$NON-NLS-1$
+          " y=" , y , //$NON-NLS-1$
+          " width=" , width , //$NON-NLS-1$
+          " height=" , height , //$NON-NLS-1$
+          " detail=" , detail , //$NON-NLS-1$
+          " result=" , result , //$NON-NLS-1$
+          "}"); //$NON-NLS-1$
     }
 }