diff dwt/accessibility/AccessibleEvent.d @ 36:db5a898b2119

Fixed a lot of compile errors
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Tue, 07 Oct 2008 12:56:18 +0200
parents f565d3a95c0a
children d8635bb48c7c
line wrap: on
line diff
--- a/dwt/accessibility/AccessibleEvent.d	Sun Sep 14 23:32:29 2008 +0200
+++ b/dwt/accessibility/AccessibleEvent.d	Tue Oct 07 12:56:18 2008 +0200
@@ -13,8 +13,11 @@
  *******************************************************************************/
 module dwt.accessibility.AccessibleEvent;
 
+import dwt.internal.DWTEventObject;
+
+import tango.text.convert.Format;
+
 import dwt.dwthelper.utils;
-import dwt.internal.DWTEventObject;
 
 /**
  * Instances of this class are sent as a result of
@@ -47,7 +50,7 @@
      */
     public String result;
 
-    static final long serialVersionUID = 3257567304224026934L;
+    static const long serialVersionUID = 3257567304224026934L;
 
     /**
      * Constructs a new instance of this class.
@@ -65,6 +68,6 @@
      * @return a String representation of the event
      */
     public String toString () {
-        return "AccessibleEvent {childID=" + childID + " result=" + result + "}"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+        return Format("AccessibleEvent {childID={}{}{}{}" , childID , " result=" , result , "}"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
     }
 }