diff dwt/custom/TextChangedEvent.d @ 41:6337764516f1

Sync dwt/custom with dwt-linux (took copy of complete folder)
author Frank Benoit <benoit@tionex.de>
date Tue, 07 Oct 2008 16:29:55 +0200
parents 1a8b3cb347e0
children
line wrap: on
line diff
--- a/dwt/custom/TextChangedEvent.d	Tue Oct 07 14:41:31 2008 +0200
+++ b/dwt/custom/TextChangedEvent.d	Tue Oct 07 16:29:55 2008 +0200
@@ -1,5 +1,5 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2004 IBM Corporation and others.
+/*******************************************************************************
+ * Copyright (c) 2000, 2008 IBM Corporation and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -7,27 +7,29 @@
  *
  * Contributors:
  *     IBM Corporation - initial API and implementation
+ * Port to the D programming language:
+ *     Frank Benoit <benoit@tionex.de>
  *******************************************************************************/
-module dwt.custom;
+module dwt.custom.TextChangedEvent;
 
-import dwt.events.*;
-
+import dwt.events.TypedEvent;
+import dwt.custom.StyledTextContent;
 /**
- * This event is sent by the StyledTextContent implementor when a change to 
+ * This event is sent by the StyledTextContent implementor when a change to
  * the text occurs.
+ *
+ * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
  */
 public class TextChangedEvent : TypedEvent {
 
-    static final long serialVersionUID = 3258696524257835065L;
-
 /**
  * Create the TextChangedEvent to be used by the StyledTextContent implementor.
  * <p>
  *
- * @param source the object that will be sending the TextChangedEvent, 
- *  cannot be null  
+ * @param source the object that will be sending the TextChangedEvent,
+ *  cannot be null
  */
 public this(StyledTextContent source) {
-    super(source);
+    super(cast(Object)source);
 }
 }