diff dwt/widgets/Composite.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/Composite.d	Wed Aug 27 13:51:50 2008 +0200
+++ b/dwt/widgets/Composite.d	Wed Aug 27 14:02:31 2008 +0200
@@ -60,7 +60,7 @@
     int scrolledVisibleRgn, siblingsVisibleRgn;
     int layoutCount, backgroundMode;
 
-Composite () {
+this () {
     /* Do nothing */
 }
 
@@ -94,7 +94,7 @@
  * @see DWT#NO_RADIO_GROUP
  * @see Widget#getStyle
  */
-public Composite (Composite parent, int style) {
+public this (Composite parent, int style) {
     super (parent, style);
 }