diff dwt/internal/cocoa/NSTreeNode.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/NSTreeNode.d	Sat Aug 09 17:00:02 2008 +0200
+++ b/dwt/internal/cocoa/NSTreeNode.d	Tue Aug 19 17:35:17 2008 +0200
@@ -36,59 +36,59 @@
 
     public NSArray childNodes ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_childNodes);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_childNodes);
         return result !is null ? new NSArray(result) : null;
     }
 
     public NSTreeNode descendantNodeAtIndexPath (NSIndexPath indexPath)
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_descendantNodeAtIndexPath_1, indexPath !is null ? indexPath.id : null);
-        return result is this.id ? this : (result !is null ? new NSTreeNode(result) : null);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_descendantNodeAtIndexPath_1, indexPath !is null ? indexPath.id_ : null);
+        return result is this.id_ ? this : (result !is null ? new NSTreeNode(result) : null);
     }
 
     public NSIndexPath indexPath ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_indexPath);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_indexPath);
         return result !is null ? new NSIndexPath(result) : null;
     }
 
     public id initWithRepresentedObject (id modelObject)
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_initWithRepresentedObject_1, modelObject !is null ? modelObject.id : null);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_initWithRepresentedObject_1, modelObject !is null ? modelObject.id_ : null);
         return result !is null ? new id(result) : null;
     }
 
     public bool isLeaf ()
     {
-        return OS.objc_msgSend(this.id, OS.sel_isLeaf) !is null;
+        return OS.objc_msgSend(this.id_, OS.sel_isLeaf) !is null;
     }
 
     public NSMutableArray mutableChildNodes ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_mutableChildNodes);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_mutableChildNodes);
         return result !is null ? new NSMutableArray(result) : null;
     }
 
     public NSTreeNode parentNode ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_parentNode);
-        return result is this.id ? this : (result !is null ? new NSTreeNode(result) : null);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_parentNode);
+        return result is this.id_ ? this : (result !is null ? new NSTreeNode(result) : null);
     }
 
     public id representedObject ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_representedObject);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_representedObject);
         return result !is null ? new id(result) : null;
     }
 
     public void sortWithSortDescriptors (NSArray sortDescriptors, bool recursively)
     {
-        OS.objc_msgSend(this.id, OS.sel_sortWithSortDescriptors_1recursively_1, sortDescriptors !is null ? sortDescriptors.id : null, recursively);
+        OS.objc_msgSend(this.id_, OS.sel_sortWithSortDescriptors_1recursively_1, sortDescriptors !is null ? sortDescriptors.id_ : null, recursively);
     }
 
     public static id treeNodeWithRepresentedObject (id modelObject)
     {
-        objc.id result = OS.objc_msgSend(OS.class_NSTreeNode, OS.sel_treeNodeWithRepresentedObject_1, modelObject !is null ? modelObject.id : null);
+        objc.id result = OS.objc_msgSend(OS.class_NSTreeNode, OS.sel_treeNodeWithRepresentedObject_1, modelObject !is null ? modelObject.id_ : null);
         return result !is null ? new id(result) : null;
     }