diff dwt/accessibility/AccessibleControlListener.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/AccessibleControlListener.d	Wed Dec 31 21:01:13 2008 +0100
+++ b/dwt/accessibility/AccessibleControlListener.d	Thu Jan 15 23:08:54 2009 +0100
@@ -45,7 +45,7 @@
  * @since 2.0
  */
 public interface AccessibleControlListener : DWTEventListener {
-
+    
     /**
      * Sent when an accessibility client requests the identifier
      * of the control child at the specified display coordinates.
@@ -64,7 +64,7 @@
      * </ul>
      */
     public void getChildAtPoint (AccessibleControlEvent e);
-
+    
     /**
      * Sent when an accessibility client requests the location
      * of the control, or the location of a child of the control.
@@ -80,7 +80,7 @@
      * </ul>
      */
     public void getLocation (AccessibleControlEvent e);
-
+    
     /**
      * Sent when an accessibility client requests the accessible object
      * for a child of the control.
@@ -97,7 +97,7 @@
      * </ul>
      */
     public void getChild (AccessibleControlEvent e);
-
+    
     /**
      * Sent when an accessibility client requests the number of
      * children in the control.
@@ -111,7 +111,7 @@
      * </ul>
      */
     public void getChildCount (AccessibleControlEvent e);
-
+    
     /**
      * Sent when an accessibility client requests the default action
      * of the control, or the default action of a child of the control.
@@ -131,7 +131,7 @@
      * </ul>
      */
     public void getDefaultAction (AccessibleControlEvent e);
-
+    
     /**
      * Sent when an accessibility client requests the identity of
      * the child or control that has keyboard focus.
@@ -148,7 +148,7 @@
      * </ul>
      */
     public void getFocus (AccessibleControlEvent e);
-
+    
     /**
      * Sent when an accessibility client requests the role
      * of the control, or the role of a child of the control.
@@ -164,7 +164,7 @@
      * </ul>
      */
     public void getRole (AccessibleControlEvent e);
-
+    
     /**
      * Sent when an accessibility client requests the identity of
      * the child or control that is currently selected.
@@ -182,7 +182,7 @@
      * </ul>
      */
     public void getSelection (AccessibleControlEvent e);
-
+    
     /**
      * Sent when an accessibility client requests the state
      * of the control, or the state of a child of the control.
@@ -198,7 +198,7 @@
      * </ul>
      */
     public void getState (AccessibleControlEvent e);
-
+    
     /**
      * Sent when an accessibility client requests the value
      * of the control, or the value of a child of the control.
@@ -220,7 +220,7 @@
      * </ul>
      */
     public void getValue (AccessibleControlEvent e);
-
+    
     /**
      * Sent when an accessibility client requests the children of the control.
      * <p>