diff dwt/internal/cocoa/SWTPanelDelegate.d @ 45:d8635bb48c7c

Merge with SWT 3.5
author Jacob Carlborg <doob@me.com>
date Mon, 01 Dec 2008 17:07:00 +0100
parents 642f460a0908
children
line wrap: on
line diff
--- a/dwt/internal/cocoa/SWTPanelDelegate.d	Tue Oct 21 15:20:04 2008 +0200
+++ b/dwt/internal/cocoa/SWTPanelDelegate.d	Mon Dec 01 17:07:00 2008 +0100
@@ -9,31 +9,22 @@
  *     IBM Corporation - initial API and implementation
  *     
  * Port to the D programming language:
- *     Jacob Carlborg <jacob.carlborg@gmail.com>
+ *     Jacob Carlborg <doob@me.com>
  *******************************************************************************/
 module dwt.internal.cocoa.SWTPanelDelegate;
 
-import dwt.internal.cocoa.NSInteger;
+import dwt.dwthelper.utils;
 import dwt.internal.cocoa.NSObject;
-import dwt.internal.cocoa.OS;
 import objc = dwt.internal.objc.runtime;
 
 public class SWTPanelDelegate : NSObject {
 
-    public this () {
-        super(null);
-    }
-
-    public this (objc.id id) {
-        super(id);
-    }
-
-    public NSInteger tag () {
-        return cast(NSInteger) OS.objc_msgSend(id_, OS.sel_tag);
-    }
-
-    public void setTag (NSInteger tag) {
-        OS.objc_msgSend(id_, OS.sel_setTag_1, tag);
-    }
+public this() {
+    super(cast(objc.id) null);
+}
+    
+public this(objc.id id) {
+    super(id);
+}
 
 }