diff dwt/widgets/DirectoryDialog.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 d8635bb48c7c
line wrap: on
line diff
--- a/dwt/widgets/DirectoryDialog.d	Wed Aug 27 13:51:50 2008 +0200
+++ b/dwt/widgets/DirectoryDialog.d	Wed Aug 27 14:02:31 2008 +0200
@@ -50,7 +50,7 @@
  *    <li>ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass</li>
  * </ul>
  */
-public DirectoryDialog (Shell parent) {
+public this (Shell parent) {
     this (parent, DWT.APPLICATION_MODAL);
 }
 
@@ -78,7 +78,7 @@
  *    <li>ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass</li>
  * </ul>
  */
-public DirectoryDialog (Shell parent, int style) {
+public this (Shell parent, int style) {
     super (parent, style);
     checkSubclass ();
 }