diff dwt/widgets/Canvas.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 9414ecde7ba7
line wrap: on
line diff
--- a/dwt/widgets/Canvas.d	Wed Aug 27 13:51:50 2008 +0200
+++ b/dwt/widgets/Canvas.d	Wed Aug 27 14:02:31 2008 +0200
@@ -50,7 +50,7 @@
     Caret caret;
     IME ime;
 
-Canvas () {
+this () {
     /* Do nothing */
 }
 
@@ -92,7 +92,7 @@
  * @see Widget#checkSubclass
  * @see Widget#getStyle
  */
-public Canvas (Composite parent, int style) {
+public this (Composite parent, int style) {
     super (parent, style);
 }