diff dwt/widgets/Decorations.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 fdbd69a5f101
line wrap: on
line diff
--- a/dwt/widgets/Decorations.d	Wed Aug 27 13:51:50 2008 +0200
+++ b/dwt/widgets/Decorations.d	Wed Aug 27 14:02:31 2008 +0200
@@ -104,7 +104,7 @@
     Control savedFocus;
     Button defaultButton;
     
-Decorations () {
+this () {
     /* Do nothing */
 }
 
@@ -146,7 +146,7 @@
  * @see Widget#checkSubclass
  * @see Widget#getStyle
  */
-public Decorations (Composite parent, int style) {
+public this (Composite parent, int style) {
     super (parent, checkStyle (style));
 }