diff dwt/browser/TitleListener.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/TitleListener.d	Fri Jan 16 12:19:08 2009 +0100
+++ b/dwt/browser/TitleListener.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.TitleListener;
 
 import dwt.browser.TitleEvent;
-import dwt.dwthelper.utils;
+//import dwt.dwthelper.utils;
+
 import dwt.internal.DWTEventListener;
 
 /**
@@ -29,22 +29,22 @@
  */
 public interface TitleListener : DWTEventListener {
 
-    /**
-     * This method is called when the title of the current document
-     * is available or has changed.
-     * <p>
-     *
-     * <p>The following fields in the <code>TitleEvent</code> apply:
-     * <ul>
-     * <li>(in) title the title of the current document
-     * <li>(in) widget the <code>Browser</code> whose current document's
-     * title is known or modified
-     * </ul>
-     * 
-     * @param event the <code>TitleEvent</code> that contains the title
-     * of the document currently displayed in a <code>Browser</code>
-     * 
-     * @since 3.0
-     */
-    public void changed (TitleEvent event);
+/**
+ * This method is called when the title of the current document
+ * is available or has changed.
+ * <p>
+ *
+ * <p>The following fields in the <code>TitleEvent</code> apply:
+ * <ul>
+ * <li>(in) title the title of the current document
+ * <li>(in) widget the <code>Browser</code> whose current document's
+ * title is known or modified
+ * </ul>
+ * 
+ * @param event the <code>TitleEvent</code> that contains the title
+ * of the document currently displayed in a <code>Browser</code>
+ * 
+ * @since 3.0
+ */
+public void changed(TitleEvent event);
 }