diff dwt/browser/StatusTextListener.d @ 125:5583f8eeee6c

Synced mozilla with dwt-linux
author Jacob Carlborg <doob@me.com>
date Fri, 16 Jan 2009 12:49:08 +0100
parents d8635bb48c7c
children
line wrap: on
line diff
--- a/dwt/browser/StatusTextListener.d	Fri Jan 16 12:19:08 2009 +0100
+++ b/dwt/browser/StatusTextListener.d	Fri Jan 16 12:49:08 2009 +0100
@@ -7,14 +7,14 @@
  *
  * Contributors:
  *     IBM Corporation - initial API and implementation
- *     
  * Port to the D programming language:
- *     Jacob Carlborg <doob@me.com>
+ *      John Reimer <terminal.node@gmail.com>
  *******************************************************************************/
 module dwt.browser.StatusTextListener;
 
 import dwt.browser.StatusTextEvent;
-import dwt.dwthelper.utils;
+//import dwt.dwthelper.utils;
+
 import dwt.internal.DWTEventListener;
 
 /**
@@ -29,22 +29,22 @@
  */
 public interface StatusTextListener : DWTEventListener {
 
-    /**
-     * This method is called when the status text is changed. The
-     * status text is typically displayed in the status bar of a browser 
-     * application. 
-     * <p>
-     *
-     * <p>The following fields in the <code>StatusTextEvent</code> apply:
-     * <ul>
-     * <li>(in) text the modified status text
-     * <li>(in) widget the <code>Browser</code> whose status text is changed
-     * </ul>
-     * 
-     * @param event the <code>StatusTextEvent</code> that contains the updated
-     * status description of a <code>Browser</code>
-     * 
-     * @since 3.0
-     */
-    public void changed (StatusTextEvent event);
+/**
+ * This method is called when the status text is changed. The
+ * status text is typically displayed in the status bar of a browser 
+ * application. 
+ * <p>
+ *
+ * <p>The following fields in the <code>StatusTextEvent</code> apply:
+ * <ul>
+ * <li>(in) text the modified status text
+ * <li>(in) widget the <code>Browser</code> whose status text is changed
+ * </ul>
+ * 
+ * @param event the <code>StatusTextEvent</code> that contains the updated
+ * status description of a <code>Browser</code>
+ * 
+ * @since 3.0
+ */
+public void changed(StatusTextEvent event);
 }