comparison org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/browser/TitleEvent.d @ 49:7a2dd761a8b2

more work until dmd 2.026 linux segfaults.
author Frank Benoit <benoit@tionex.de>
date Fri, 27 Mar 2009 12:59:54 +0100
parents f589fc20a5f9
children 536e43f63c81
comparison
equal deleted inserted replaced
48:ddbfe84d86df 49:7a2dd761a8b2
27 */ 27 */
28 public class TitleEvent : TypedEvent { 28 public class TitleEvent : TypedEvent {
29 /** the title of the current document */ 29 /** the title of the current document */
30 public String title; 30 public String title;
31 31
32 static final long serialVersionUID = 4121132532906340919L; 32 static const long serialVersionUID = 4121132532906340919L;
33 33
34 this(Widget w) { 34 this(Widget w) {
35 super(w); 35 super(w);
36 } 36 }
37 37