diff dwt/internal/cocoa/NSEnumerator.d @ 1:8b48be5454ce

The internal cocoa classes compile now
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Tue, 19 Aug 2008 17:35:17 +0200
parents 380af2bdd8e5
children f565d3a95c0a
line wrap: on
line diff
--- a/dwt/internal/cocoa/NSEnumerator.d	Sat Aug 09 17:00:02 2008 +0200
+++ b/dwt/internal/cocoa/NSEnumerator.d	Tue Aug 19 17:35:17 2008 +0200
@@ -42,13 +42,13 @@
 
     public NSArray allObjects ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_allObjects);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_allObjects);
         return result !is null ? new NSArray(result) : null;
     }
 
     public id nextObject ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_nextObject);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_nextObject);
         return result !is null ? new id(result) : null;
     }