diff dwt/widgets/Tracker.d @ 5:1a8b3cb347e0

Fix Ctors to 'this'
author Frank Benoit <benoit@tionex.de>
date Wed, 27 Aug 2008 14:02:31 +0200
parents 649b8e223d5a
children e831403a80a9
line wrap: on
line diff
--- a/dwt/widgets/Tracker.d	Wed Aug 27 13:51:50 2008 +0200
+++ b/dwt/widgets/Tracker.d	Wed Aug 27 14:02:31 2008 +0200
@@ -101,7 +101,7 @@
  * @see Widget#checkSubclass
  * @see Widget#getStyle
  */
-public Tracker (Composite parent, int style) {
+public this (Composite parent, int style) {
     super (parent, checkStyle (style));
     this.parent = parent;
 }
@@ -140,7 +140,7 @@
  * @see DWT#UP
  * @see DWT#DOWN
  */
-public Tracker (Display display, int style) {
+public this (Display display, int style) {
     if (display is null) display = Display.getCurrent ();
     if (display is null) display = Display.getDefault ();
     if (!display.isValidThread ()) {