diff dwt/internal/cocoa/NSSortDescriptor.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/NSSortDescriptor.d	Sat Aug 09 17:00:02 2008 +0200
+++ b/dwt/internal/cocoa/NSSortDescriptor.d	Tue Aug 19 17:35:17 2008 +0200
@@ -35,41 +35,41 @@
 
     public bool ascending ()
     {
-        return OS.objc_msgSend(this.id, OS.sel_ascending) !is null;
+        return OS.objc_msgSend(this.id_, OS.sel_ascending) !is null;
     }
 
     public NSComparisonResult compareObject (id object1, id object2)
     {
-        return cast(NSComparisonResult) OS.objc_msgSend(this.id, OS.sel_compareObject_1toObject_1, object1 !is null ? object1.id : null, object2 !is null ? object2.id : null);
+        return cast(NSComparisonResult) OS.objc_msgSend(this.id_, OS.sel_compareObject_1toObject_1, object1 !is null ? object1.id_ : null, object2 !is null ? object2.id_ : null);
     }
 
     public id initWithKey_ascending_ (NSString key, bool ascending)
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_initWithKey_1ascending_1, key !is null ? key.id : null, ascending);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_initWithKey_1ascending_1, key !is null ? key.id_ : null, ascending);
         return result !is null ? new id(result) : null;
     }
 
     public id initWithKey_ascending_selector_ (NSString key, bool ascending, objc.SEL selector)
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_initWithKey_1ascending_1selector_1, key !is null ? key.id : null, ascending, selector);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_initWithKey_1ascending_1selector_1, key !is null ? key.id_ : null, ascending, selector);
         return result !is null ? new id(result) : null;
     }
 
     public NSString key ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_key);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_key);
         return result !is null ? new NSString(result) : null;
     }
 
     public id reversedSortDescriptor ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_reversedSortDescriptor);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_reversedSortDescriptor);
         return result !is null ? new id(result) : null;
     }
 
     public objc.SEL selector ()
     {
-        return OS.objc_msgSend(this.id, OS.sel_selector);
+        return cast(objc.SEL) OS.objc_msgSend(this.id_, OS.sel_selector);
     }
 
 }