diff dwt/internal/cocoa/NSTextAttachment.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/NSTextAttachment.d	Sat Aug 09 17:00:02 2008 +0200
+++ b/dwt/internal/cocoa/NSTextAttachment.d	Tue Aug 19 17:35:17 2008 +0200
@@ -34,30 +34,30 @@
 
     public id attachmentCell ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_attachmentCell);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_attachmentCell);
         return result !is null ? new id(result) : null;
     }
 
     public NSFileWrapper fileWrapper ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_fileWrapper);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_fileWrapper);
         return result !is null ? new NSFileWrapper(result) : null;
     }
 
     public id initWithFileWrapper (NSFileWrapper fileWrapper)
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_initWithFileWrapper_1, fileWrapper !is null ? fileWrapper.id : null);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_initWithFileWrapper_1, fileWrapper !is null ? fileWrapper.id_ : null);
         return result !is null ? new id(result) : null;
     }
 
     public void setAttachmentCell (id cell)
     {
-        OS.objc_msgSend(this.id, OS.sel_setAttachmentCell_1, cell !is null ? cell.id : null);
+        OS.objc_msgSend(this.id_, OS.sel_setAttachmentCell_1, cell !is null ? cell.id_ : null);
     }
 
     public void setFileWrapper (NSFileWrapper fileWrapper)
     {
-        OS.objc_msgSend(this.id, OS.sel_setFileWrapper_1, fileWrapper !is null ? fileWrapper.id : null);
+        OS.objc_msgSend(this.id_, OS.sel_setFileWrapper_1, fileWrapper !is null ? fileWrapper.id_ : null);
     }
 
 }