diff dwt/browser/SimpleEnumerator.d @ 5:1a8b3cb347e0

Fix Ctors to 'this'
author Frank Benoit <benoit@tionex.de>
date Wed, 27 Aug 2008 14:02:31 +0200
parents 380af2bdd8e5
children d8635bb48c7c
line wrap: on
line diff
--- a/dwt/browser/SimpleEnumerator.d	Wed Aug 27 13:51:50 2008 +0200
+++ b/dwt/browser/SimpleEnumerator.d	Wed Aug 27 14:02:31 2008 +0200
@@ -26,7 +26,7 @@
     nsISupports[] values;
     int index = 0;
 
-SimpleEnumerator (nsISupports[] values) {
+this (nsISupports[] values) {
     this.values = values;
     for (int i = 0; i < values.length; i++) {
         values[i].AddRef ();