diff dwt/accessibility/AccessibleTextEvent.d @ 123:63a09873578e

Fixed compile errors
author Jacob Carlborg <doob@me.com>
date Thu, 15 Jan 2009 23:08:54 +0100
parents d8635bb48c7c
children
line wrap: on
line diff
--- a/dwt/accessibility/AccessibleTextEvent.d	Wed Dec 31 21:01:13 2008 +0100
+++ b/dwt/accessibility/AccessibleTextEvent.d	Thu Jan 15 23:08:54 2009 +0100
@@ -39,28 +39,28 @@
 public class AccessibleTextEvent : DWTEventObject {
     public int childID; // IN
     public int offset, length; // OUT
-
+    
     static const long serialVersionUID = 3977019530868308275L;
-
-    /**
-     * Constructs a new instance of this class.
-     *
-     * @param source the object that fired the event
-     */
-    public this (Object source) {
-        super(source);
-    }
+    
+/**
+ * Constructs a new instance of this class.
+ *
+ * @param source the object that fired the event
+ */
+public this (Object source) {
+    super(source);
+}
 
-    /**
-     * Returns a string containing a concise, human-readable
-     * description of the receiver.
-     *
-     * @return a string representation of the event
-     */
-    public String toString () {
-        return Format("AccessibleTextEvent {childID={}{}{}{}{}{}" , childID , //$NON-NLS-1$
-        " offset=" , offset , //$NON-NLS-1$
-        " length=" , length , //$NON-NLS-1$
-        "}"); //$NON-NLS-1$
-    }
+/**
+ * Returns a string containing a concise, human-readable
+ * description of the receiver.
+ *
+ * @return a string representation of the event
+ */
+public String toString () {
+    return Format("AccessibleTextEvent {childID={}{}{}{}{}{}" , childID , //$NON-NLS-1$
+                  " offset=" , offset , //$NON-NLS-1$
+                  " length=" , length , //$NON-NLS-1$
+                  "}"); //$NON-NLS-1$
 }
+}