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

Fix Ctors to 'this'
author Frank Benoit <benoit@tionex.de>
date Wed, 27 Aug 2008 14:02:31 +0200
parents ab8b5765e3d1
children e831403a80a9
line wrap: on
line diff
--- a/dwt/widgets/Control.d	Wed Aug 27 13:51:50 2008 +0200
+++ b/dwt/widgets/Control.d	Wed Aug 27 14:02:31 2008 +0200
@@ -97,7 +97,7 @@
 
 //  static final String RESET_VISIBLE_REGION = "dwt.internal.resetVisibleRegion";
 
-Control () {
+this () {
     /* Do nothing */
 }
 
@@ -129,7 +129,7 @@
  * @see Widget#checkSubclass
  * @see Widget#getStyle
  */
-public Control (Composite parent, int style) {
+public this (Composite parent, int style) {
     super (parent, style);
     this.parent = parent;
     createWidget ();